feat: Implement admin get roles API endpoint

This commit is contained in:
Faruk AYDIN
2024-02-21 15:35:30 +01:00
parent b21074c871
commit 3bf1f79c79
5 changed files with 86 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import healthcheckRouter from './healthcheck.js';
import automatischRouter from './api/v1/automatisch.js';
import usersRouter from './api/v1/users.js';
import samlAuthProvidersRouter from './api/v1/admin/saml-auth-providers.ee.js';
import rolesRouter from './api/v1/admin/roles.ee.js';
const router = Router();
@@ -16,5 +17,6 @@ router.use('/healthcheck', healthcheckRouter);
router.use('/api/v1/automatisch', automatischRouter);
router.use('/api/v1/users', usersRouter);
router.use('/api/v1/admin/saml-auth-providers', samlAuthProvidersRouter);
router.use('/api/v1/admin/roles', rolesRouter);
export default router;