From 1361cbc826a9d27b54feaebf4c1c571e0a77d2fd Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Mon, 19 Feb 2024 22:19:37 +0100 Subject: [PATCH] chore: Remove get saml auth providers from authorization list --- packages/backend/src/helpers/authorization.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/backend/src/helpers/authorization.js b/packages/backend/src/helpers/authorization.js index e1e6a3d9..b8d40136 100644 --- a/packages/backend/src/helpers/authorization.js +++ b/packages/backend/src/helpers/authorization.js @@ -7,10 +7,6 @@ const authorizationList = { action: 'read', subject: 'User', }, - 'GET /api/v1/admin/saml-auth-providers/': { - action: 'read', - subject: 'SamlAuthProvider', - }, }; export const authorizeUser = async (request, response, next) => {