Allow non-admins to unexpire groups

This commit is contained in:
Kalle 2022-03-22 00:11:17 +02:00
parent 74cff317f8
commit 7b9045cea8

View File

@ -200,7 +200,6 @@ export const action: ActionFunction = async ({ request, context }) => {
return redirect("/play");
}
case "UNEXPIRE": {
validateIsGroupAdmin();
await LFGGroup.unexpire(ownGroup.id);
break;
}