mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 12:33:09 +02:00
32 lines
703 B
TypeScript
32 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,
|
||
|
});
|
||
|
});
|