chore: Remove old app auth clients API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-26 21:19:10 +01:00
parent 6dc54ecabc
commit 70f5e45c1f
3 changed files with 0 additions and 55 deletions

View File

@@ -3,17 +3,9 @@ import asyncHandler from 'express-async-handler';
import { authenticateUser } from '../../../helpers/authentication.js';
import { checkIsEnterprise } from '../../../helpers/check-is-enterprise.js';
import getAppAuthClientAction from '../../../controllers/api/v1/app-auth-clients/get-app-auth-client.js';
import getAppAuthClientsAction from '../../../controllers/api/v1/app-auth-clients/get-app-auth-clients.js';
const router = Router();
router.get(
'/',
authenticateUser,
checkIsEnterprise,
asyncHandler(getAppAuthClientsAction)
);
router.get(
'/:appAuthClientId',
authenticateUser,