Skip to content
Snippets Groups Projects
Commit 62964c45 authored by piuvas's avatar piuvas
Browse files

cleanup for linter to be happy

parent b92a3255
No related branches found
No related tags found
No related merge requests found
Pipeline #2301 passed with stage
in 12 minutes and 26 seconds
......@@ -3,7 +3,6 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { IsNull } from 'typeorm';
import { Inject, Injectable } from '@nestjs/common';
import type { EmojisRepository } from '@/models/_.js';
import { Endpoint } from '@/server/api/endpoint-base.js';
......@@ -55,7 +54,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
private emojiEntityService: EmojiEntityService,
) {
super(meta, paramDef, async (ps, me) => {
super(meta, paramDef, async () => {
const emojis = await this.emojisRepository.createQueryBuilder()
.where('host IS NULL')
.orderBy('LOWER(category)', 'ASC')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment