Siddhnak
Siddhnak
` SecurityFilterChain securityFilterChain(HttpSecurity http)throws Exception{ http.csrf((csrf) -> csrf.disable()) .authorizeHttpRequests((authorize)->{ authorize.requestMatchers(HttpMethod.POST,"/api/**").hasRole("ADMIN"); authorize.requestMatchers(HttpMethod.PUT,"/api/**").hasRole("ADMIN"); authorize.requestMatchers(HttpMethod.DELETE,"/api/**").hasRole("ADMIN"); authorize.anyRequest().authenticated(); }).httpBasic(Customizer.withDefaults()); return http.build(); }` In my case have already disabled it, but still getting 401 using POST...
Hi @jereyes4 thanks for sharing your plugin. i am facing some trouble using it..how to create bookmarks? Will i be able to see any pop up? i have followed the...
@rolandlo Thanks for replying back.. Nightly build works like a charm.. Do we have a button/shortcut on the overlay to clickly view and edit bookmarks? would be amazing though..