Changeset 571e0df for trip-planner/src


Ignore:
Timestamp:
02/06/22 18:19:53 (2 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Parents:
6fe77af
Message:

final presentation

Location:
trip-planner/src/main/java/finki/diplomska/tripplanner
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trip-planner/src/main/java/finki/diplomska/tripplanner/models/dto/LocationDto.java

    r6fe77af r571e0df  
    4848        this.categories = categories;
    4949    }
    50 
    5150    public LocationDto() {
    5251    }
  • trip-planner/src/main/java/finki/diplomska/tripplanner/security/SecurityConfig.java

    r6fe77af r571e0df  
    8181                .antMatchers("/api/all").permitAll()
    8282                .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()
    8883                .anyRequest().authenticated();
    8984        http.addFilterBefore(jwtAuthenticationFilter(), UsernamePasswordAuthenticationFilter.class);
Note: See TracChangeset for help on using the changeset viewer.