You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I defined role-based users in the spring cloud dataflow application with spring security and control page access with hasRole.
.antMatchers(HttpMethod.GET, "/audit-records").hasRole("MANAGE")
.antMatchers(HttpMethod.GET, "/audit-records/**").hasRole("MANAGE")
For unauthorized users, a response is returned with the status code 401 Unauthorized.
The page notification message comes like this. Can I change it to a more user-friendly message?
An error occurred
TypeError: d is not iterable
The text was updated successfully, but these errors were encountered:
I defined role-based users in the spring cloud dataflow application with spring security and control page access with hasRole.
.antMatchers(HttpMethod.GET, "/audit-records").hasRole("MANAGE")
.antMatchers(HttpMethod.GET, "/audit-records/**").hasRole("MANAGE")
For unauthorized users, a response is returned with the status code 401 Unauthorized.
The page notification message comes like this. Can I change it to a more user-friendly message?
An error occurred
TypeError: d is not iterable
The text was updated successfully, but these errors were encountered: