added createRolesForTeam in register

This commit is contained in:
Laurin
2022-05-28 18:27:13 +02:00
parent da154f2f83
commit 58235b301e
3 changed files with 11 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
import Express from "express";
import { assignParticipantToRole } from "../Controllers/role.controller";
const router = Express.Router();
router.patch<"/:pid/", { pid: string }>("/:pid/", assignParticipantToRole)