Skip to content

Commit c14b8c3

Browse files
committed
1
1 parent 64bef18 commit c14b8c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/main/java/greencity/config/SecurityConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
123123
"/user/checkByUuid",
124124
"/user/get-user-rating",
125125
COMMIT_INFO,
126-
LOGS_LINKS)
126+
LOGS_LINKS,
127+
EXPORT_SETTINGS_LINKS)
127128
.permitAll()
128129
.requestMatchers(HttpMethod.POST,
129130
"/ownSecurity/signUp",
@@ -155,8 +156,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
155156
"/ownSecurity/password-status",
156157
"/user/emailNotifications",
157158
"/lang",
158-
"/lang/**",
159-
EXPORT_SETTINGS_LINKS)
159+
"/lang/**")
160160
.hasAnyRole(USER, ADMIN, UBS_EMPLOYEE, MODERATOR, EMPLOYEE)
161161
.requestMatchers(HttpMethod.POST,
162162
FILES)

0 commit comments

Comments
 (0)