mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-10 22:30:49 -06:00
31 lines
703 B
TypeScript
31 lines
703 B
TypeScript
import { UserProfiles, Users } from '@/models/index.js';
|
|
import define from '../../define.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
text: { type: 'string' },
|
|
},
|
|
required: ['userId', 'text'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const user = await Users.findOneBy({ id: ps.userId });
|
|
|
|
if (user == null) {
|
|
throw new Error('user not found');
|
|
}
|
|
|
|
await UserProfiles.update({ userId: user.id }, {
|
|
moderationNote: ps.text,
|
|
});
|
|
});
|