* Revert "revert 484e023c0" This reverts commit c03b70c949923b830a6d0361d1aa4d5f5614b7b7. * also allow pure renote * fix checks for pure renote
53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
import define from '../../../define.js';
|
|
import { Emojis } from '@/models/index.js';
|
|
import { ApiError } from '../../../error.js';
|
|
import { db } from '@/db/postgre.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
|
|
errors: {
|
|
noSuchEmoji: {
|
|
message: 'No such emoji.',
|
|
code: 'NO_SUCH_EMOJI',
|
|
id: '684dec9d-a8c2-4364-9aa8-456c49cb1dc8',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string', format: 'misskey:id' },
|
|
name: { type: 'string' },
|
|
category: {
|
|
type: 'string',
|
|
nullable: true,
|
|
description: 'Use `null` to reset the category.',
|
|
},
|
|
aliases: { type: 'array', items: {
|
|
type: 'string',
|
|
} },
|
|
},
|
|
required: ['id', 'name', 'aliases'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps) => {
|
|
const emoji = await Emojis.findOneBy({ id: ps.id });
|
|
|
|
if (emoji == null) throw new ApiError(meta.errors.noSuchEmoji);
|
|
|
|
await Emojis.update(emoji.id, {
|
|
updatedAt: new Date(),
|
|
name: ps.name,
|
|
category: ps.category,
|
|
aliases: ps.aliases,
|
|
});
|
|
|
|
await db.queryResultCache!.remove(['meta_emojis']);
|
|
});
|