-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/dat 249 bring back swagger #271
Feature/dat 249 bring back swagger #271
Conversation
@@ -61,7 +61,7 @@ public SecurityFilterChain filterChain(HttpSecurity http, MvcRequestMatcher.Buil | |||
.requestMatchers(SWAGGER_RESOURCES).permitAll() | |||
.requestMatchers(mvc.pattern("/static/**")).permitAll() | |||
.requestMatchers(mvc.pattern(SecurityConstants.AUTH_LOGIN_URL)).permitAll() | |||
.requestMatchers(mvc.pattern(HttpMethod.OPTIONS, "/**")).permitAll() | |||
.requestMatchers(mvc.pattern(HttpMethod.GET, "/**")).permitAll() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sure that frontend works! I think Options is needed for cors
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked. Frontend also works after this update. I created another branch and I made the same update. everything is working. But now i must to close this PR and pull another one because there is probably some file missing in the frontend part.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can rebase your branch on top of add_ECDH
ref: #249