52774bbe64
* wip * wip * wip * Update index.ts * Update gen-openapi-spec.ts * Update api.ja-JP.md * Fix * Improve doc * Update gen-openapi-spec.ts * Update redoc.html * Improve doc * Update gen-openapi-spec.ts * Improve doc * Update CHANGELOG.md
48 lines
836 B
TypeScript
48 lines
836 B
TypeScript
import $ from 'cafy';
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
|
import define from '../../define';
|
|
import User from '../../../../models/user';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': '指定したユーザーの凍結を解除します。',
|
|
'en-US': 'Unsuspend a user.'
|
|
},
|
|
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
|
|
params: {
|
|
userId: {
|
|
validator: $.type(ID),
|
|
transform: transform,
|
|
desc: {
|
|
'ja-JP': '対象のユーザーID',
|
|
'en-US': 'The user ID which you want to unsuspend'
|
|
}
|
|
},
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps) => {
|
|
const user = await User.findOne({
|
|
_id: ps.userId
|
|
});
|
|
|
|
if (user == null) {
|
|
throw new Error('user not found');
|
|
}
|
|
|
|
await User.findOneAndUpdate({
|
|
_id: user._id
|
|
}, {
|
|
$set: {
|
|
isSuspended: false
|
|
}
|
|
});
|
|
|
|
return;
|
|
});
|