mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 17:23:08 +02:00
fcfb5ef0a3
* wip
* ✌️
* use ajv/dist/core
* revert try
* clean up
38 lines
848 B
TypeScript
38 lines
848 B
TypeScript
import define from '../../define';
|
|
import { Users } from '@/models/index';
|
|
import { insertModerationLog } from '@/services/insert-moderation-log';
|
|
import { doPostUnsuspend } from '@/services/unsuspend-user';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['userId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const user = await Users.findOne(ps.userId as string);
|
|
|
|
if (user == null) {
|
|
throw new Error('user not found');
|
|
}
|
|
|
|
await Users.update(user.id, {
|
|
isSuspended: false,
|
|
});
|
|
|
|
insertModerationLog(me, 'unsuspend', {
|
|
targetId: user.id,
|
|
});
|
|
|
|
doPostUnsuspend(user);
|
|
});
|