misskey/src/server/api/endpoints/admin/unverify-user.ts

47 lines
871 B
TypeScript
Raw Normal View History

2018-08-18 04:09:15 +00:00
import $ from 'cafy';
import ID from '../../../../misc/cafy-id';
import getParams from '../../get-params';
import User from '../../../../models/user';
export const meta = {
desc: {
ja: '指定したユーザーの公式アカウントを解除します。',
2018-08-18 04:12:29 +00:00
en: 'Mark a user as unverified.'
2018-08-18 04:09:15 +00:00
},
requireCredential: true,
requireAdmin: true,
params: {
userId: $.type(ID).note({
desc: {
ja: '対象のユーザーID',
en: 'The user ID which you want to unverify'
}
}),
}
};
export default (params: any) => new Promise(async (res, rej) => {
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
const user = await User.findOne({
_id: ps.userId
});
if (user == null) {
return rej('user not found');
}
await User.findOneAndUpdate({
_id: user._id
}, {
$set: {
isVerified: false
}
});
res();
});