diff options
author | 2024-09-19 15:39:02 +0200 | |
---|---|---|
committer | 2024-10-23 11:29:33 +0200 | |
commit | c5fab8a832454dd8c641dd2991cb91e3c8f688ca (patch) | |
tree | d131eae36c6f0b7934ec58db3eb6eb98a57fe92b /app/src/test/resources | |
parent | 21e98a42bc6255ddf5a78794b2f3e830634665c0 (diff) |
add KeycloakPermissionFilter
Issue-ID: PORTALNG-117
Change-Id: If3ba5969dbbdd6fbf7488e7f46831d6f9ff5550c
Signed-off-by: Stefan Dierichs <s.dierichs@telekom.de>
Diffstat (limited to 'app/src/test/resources')
-rw-r--r-- | app/src/test/resources/application-development.yml | 5 | ||||
-rw-r--r-- | app/src/test/resources/application.yml | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/app/src/test/resources/application-development.yml b/app/src/test/resources/application-development.yml index 23602d1..5dbb9f6 100644 --- a/app/src/test/resources/application-development.yml +++ b/app/src/test/resources/application-development.yml @@ -30,3 +30,8 @@ bff: preferences-url: http://localhost:${wiremock.server.port} history-url: http://localhost:${wiremock.server.port} keycloak-url: http://localhost:${wiremock.server.port} + keycloak-client-id: test + endpoints: + unauthenticated: /api-docs.html, /api.yaml, /webjars/**, /actuator/** + rbac: + endpoints-excluded: /api-docs.html, /api.yaml, /webjars/**, /actuator/** diff --git a/app/src/test/resources/application.yml b/app/src/test/resources/application.yml index 04e6a57..7764fbf 100644 --- a/app/src/test/resources/application.yml +++ b/app/src/test/resources/application.yml @@ -27,8 +27,8 @@ bff: preferences-url: http://localhost:${wiremock.server.port} history-url: http://localhost:${wiremock.server.port} keycloak-url: http://localhost:${wiremock.server.port} + keycloak-client-id: test endpoints: unauthenticated: /api-docs.html, /api.yaml, /webjars/**, /actuator/** rbac: - endpoints-excluded: /actuator/**, **/actuator/**, */actuator/**, /**/actuator/**, /*/actuator/** - + endpoints-excluded: /api-docs.html, /api.yaml, /webjars/**, /actuator/** |