aboutsummaryrefslogtreecommitdiff
path: root/src/api/routes/admin/userPromote.js
blob: 4a5ed8854a3010b8a8132a0a8188c0704ba57f45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const Route = require('../../structures/Route');

class userPromote extends Route {
	constructor() {
		super('/admin/users/promote', 'post', { adminOnly: true });
	}

	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')
				.where({ id })
				.update({ isAdmin: true });
		} catch (error) {
			return super.error(res, error);
		}

		return res.json({
			message: 'Successfully promoted user'
		});
	}
}

module.exports = userPromote;