2022-02-26 20:07:39 -06:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { Users } from '@/models/index.js';
|
|
|
|
import { insertModerationLog } from '@/services/insert-moderation-log.js';
|
|
|
|
import { doPostUnsuspend } from '@/services/unsuspend-user.js';
|
2018-08-14 16:50:49 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-11-14 13:15:42 -06:00
|
|
|
requireModerator: true,
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2018-08-14 16:50:49 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: ['userId'],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-08-14 16:50:49 -05:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2022-03-26 01:34:00 -05:00
|
|
|
const user = await Users.findOneBy({ id: ps.userId });
|
2018-08-14 16:50:49 -05:00
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-21 20:46:58 -06:00
|
|
|
throw new Error('user not found');
|
2018-08-14 16:50:49 -05:00
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
await Users.update(user.id, {
|
2021-12-09 08:58:30 -06:00
|
|
|
isSuspended: false,
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|
2019-07-13 13:18:45 -05:00
|
|
|
|
|
|
|
insertModerationLog(me, 'unsuspend', {
|
|
|
|
targetId: user.id,
|
|
|
|
});
|
2019-07-17 12:03:28 -05:00
|
|
|
|
|
|
|
doPostUnsuspend(user);
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|