feat: Implement saml auth providers API endpoint
This commit is contained in:
10
packages/backend/src/routes/api/v1/saml-auth-providers.ee.js
Normal file
10
packages/backend/src/routes/api/v1/saml-auth-providers.ee.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Router } from 'express';
|
||||
import asyncHandler from 'express-async-handler';
|
||||
import { checkIsEnterprise } from '../../../helpers/check-is-enterprise.js';
|
||||
import getSamlAuthProvidersAction from '../../../controllers/api/v1/saml-auth-providers/get-saml-auth-providers.ee.js';
|
||||
|
||||
const router = Router();
|
||||
|
||||
router.get('/', checkIsEnterprise, asyncHandler(getSamlAuthProvidersAction));
|
||||
|
||||
export default router;
|
Reference in New Issue
Block a user