|
|
|
@ -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) { |
|
|
|
|