36 lines
1008 B
JavaScript
36 lines
1008 B
JavaScript
import { Router } from 'express';
|
|
import { authenticateUser } from '../../../../helpers/authentication.js';
|
|
import { authorizeAdmin } from '../../../../helpers/authorization.js';
|
|
import { checkIsEnterprise } from '../../../../helpers/check-is-enterprise.js';
|
|
import getAuthClientsAction from '../../../../controllers/api/v1/admin/apps/get-auth-clients.ee.js';
|
|
import getAuthClientAction from '../../../../controllers/api/v1/admin/apps/get-auth-client.ee.js';
|
|
import createAuthClientAction from '../../../../controllers/api/v1/admin/apps/create-auth-client.ee.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get(
|
|
'/:appKey/auth-clients',
|
|
authenticateUser,
|
|
authorizeAdmin,
|
|
checkIsEnterprise,
|
|
getAuthClientsAction
|
|
);
|
|
|
|
router.post(
|
|
'/:appKey/auth-clients',
|
|
authenticateUser,
|
|
authorizeAdmin,
|
|
checkIsEnterprise,
|
|
createAuthClientAction
|
|
);
|
|
|
|
router.get(
|
|
'/:appKey/auth-clients/:appAuthClientId',
|
|
authenticateUser,
|
|
authorizeAdmin,
|
|
checkIsEnterprise,
|
|
getAuthClientAction
|
|
);
|
|
|
|
export default router;
|