|
@@ -5,10 +5,11 @@ class userDemote extends Route {
|
|
|
super('/admin/users/demote', 'post', { adminOnly: true });
|
|
|
}
|
|
|
|
|
|
- async run(req, res, db) {
|
|
|
+ async run(req, res, db, user) {
|
|
|
if (!req.body) return res.status(400).json({ message: 'No body provided' });
|
|
|
const { id } = req.body;
|
|
|
if (!id) return res.status(400).json({ message: 'No id provided' });
|
|
|
+ if (id === user.id) return res.status(400).json({ message: 'You can\'t apply this action to yourself' });
|
|
|
|
|
|
try {
|
|
|
await db.table('users')
|