Merge branch 'master' of git.rezo-rm.fr:BDEMetz/bde-liste

This commit is contained in:
johan 2023-01-10 10:00:35 +01:00
commit a39fbeb826

View file

@ -167,6 +167,13 @@ fastify.post('/addPrank', async (request, reply) => {
let content = request.body;
let auth = checkAuthetification(content);
if (auth.success) {
if (ServiceState.state == "closed"
&& !AdminUsersUid.includes(content.uid)) {
return {
success: false,
why: "The service is for now, closed"
}
}
if ("type" in content) {
let prankUid = makeid(16);
if ("prankUid" in content) {