Fix linter error in emojis endpoint

This commit is contained in:
Julia Johannesen 2024-11-20 01:17:24 -05:00
parent 9e0b759197
commit fb54546573
No known key found for this signature in database
GPG key ID: 4A1377AF3E7FBC46

View file

@ -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),
}; };