2018-08-14 23:50:49 +02:00
|
|
|
import $ from 'cafy';
|
2018-11-01 19:32:24 +01:00
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2018-08-14 23:50:49 +02:00
|
|
|
import User from '../../../../models/user';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定したユーザーの凍結を解除します。',
|
|
|
|
'en-US': 'Unsuspend a user.'
|
2018-08-14 23:50:49 +02:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2018-08-14 23:50:49 +02:00
|
|
|
requireCredential: true,
|
2018-11-14 20:15:42 +01:00
|
|
|
requireModerator: true,
|
2018-08-14 23:50:49 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-08-14 23:50:49 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '対象のユーザーID',
|
|
|
|
'en-US': 'The user ID which you want to unsuspend'
|
2018-08-14 23:50:49 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-08-14 23:50:49 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps) => {
|
2018-08-14 23:50:49 +02:00
|
|
|
const user = await User.findOne({
|
|
|
|
_id: ps.userId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new Error('user not found');
|
2018-08-14 23:50:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
await User.findOneAndUpdate({
|
|
|
|
_id: user._id
|
|
|
|
}, {
|
2019-02-22 03:46:58 +01:00
|
|
|
$set: {
|
|
|
|
isSuspended: false
|
|
|
|
}
|
|
|
|
});
|
2018-08-14 23:50:49 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return;
|
|
|
|
});
|