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
Copy file name to clipboardExpand all lines: config/src/test/kotlin/org/springframework/security/config/annotation/web/AuthorizeHttpRequestsDslTests.kt
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -124,11 +124,13 @@ class AuthorizeHttpRequestsDslTests {
124
124
@RestController
125
125
internalclassPathController {
126
126
@RequestMapping("/path")
127
-
funpath() {
127
+
funpath(): String {
128
+
return"ok"
128
129
}
129
130
130
131
@RequestMapping("/onlyPostPermitted")
131
-
funonlyPostPermitted() {
132
+
funonlyPostPermitted():String {
133
+
return"ok"
132
134
}
133
135
}
134
136
}
@@ -274,7 +276,8 @@ class AuthorizeHttpRequestsDslTests {
274
276
@RestController
275
277
internalclassPathController {
276
278
@GetMapping("/")
277
-
funindex() {
279
+
funindex(): String {
280
+
return"ok"
278
281
}
279
282
}
280
283
@@ -340,7 +343,8 @@ class AuthorizeHttpRequestsDslTests {
340
343
@RestController
341
344
internalclassPathController {
342
345
@GetMapping("/")
343
-
funindex() {
346
+
funindex(): String {
347
+
return"ok"
344
348
}
345
349
}
346
350
@@ -405,7 +409,8 @@ class AuthorizeHttpRequestsDslTests {
405
409
@RestController
406
410
internalclassPathController {
407
411
@GetMapping("/")
408
-
funindex() {
412
+
funindex(): String {
413
+
return"ok"
409
414
}
410
415
}
411
416
@@ -471,7 +476,8 @@ class AuthorizeHttpRequestsDslTests {
Copy file name to clipboardExpand all lines: core/src/main/java/org/springframework/security/access/prepost/PrePostAdviceReactiveMethodInterceptor.java
0 commit comments