Changeset 6fe77af for trip-planner/src/main/java/finki/diplomska/tripplanner/security/SecurityConfig.java
- Timestamp:
- 02/06/22 18:15:51 (3 years ago)
- Branches:
- master
- Children:
- 571e0df
- Parents:
- 76712b2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner/src/main/java/finki/diplomska/tripplanner/security/SecurityConfig.java
r76712b2 r6fe77af 81 81 .antMatchers("/api/all").permitAll() 82 82 .antMatchers("/api/places").permitAll() 83 .antMatchers("/create/planner").permitAll() 84 .antMatchers("/create/planner/{id}").permitAll() 85 .antMatchers("/create/locations").permitAll() 86 .antMatchers("/create/trip/locations").permitAll() 87 .antMatchers("/create").permitAll() 83 88 .anyRequest().authenticated(); 84 89 http.addFilterBefore(jwtAuthenticationFilter(), UsernamePasswordAuthenticationFilter.class);
Note:
See TracChangeset
for help on using the changeset viewer.