Skip to content

Commit

Permalink
adds /goodbye and /expired to the ignored paths of moderniztion-api (#…
Browse files Browse the repository at this point in the history
…1456) (#1458)

(cherry picked from commit 8f2d015)
  • Loading branch information
adamloup-enquizit authored Jun 5, 2024
1 parent 23584a1 commit 124d804
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions apps/modernization-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ nbs:
- /favicon.ico
- /static/**
- /nbs/timeout
- /goodbye
- /expired

logging:
file.name:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ SecurityWebFilterChain oidcAuthentication(
"/favicon.ico",
"/static/**",
"/logout",
"/goodbye")
"/goodbye",
"/expired"
)
.permitAll()
.anyExchange()
.authenticated())
Expand Down

0 comments on commit 124d804

Please sign in to comment.