mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-21 21:45:11 +00:00
Fix linter error in emojis endpoint
This commit is contained in:
parent
9e0b759197
commit
fb54546573
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
.where('host IS NULL')
|
.where('host IS NULL')
|
||||||
.orderBy('LOWER(category)', 'ASC')
|
.orderBy('LOWER(category)', 'ASC')
|
||||||
.orderBy('LOWER(name)', 'ASC')
|
.orderBy('LOWER(name)', 'ASC')
|
||||||
.getMany()
|
.getMany();
|
||||||
return {
|
return {
|
||||||
emojis: await this.emojiEntityService.packSimpleMany(emojis),
|
emojis: await this.emojiEntityService.packSimpleMany(emojis),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue