Make room images list public and fix tag schema
All checks were successful
build-and-deploy / build-deploy (push) Successful in 1m33s

This commit is contained in:
androidlover5842
2026-01-27 19:11:48 +05:30
parent 5b1564cdb3
commit 59094f80ba
4 changed files with 82 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ class SecurityConfig(
.authorizeHttpRequests {
it.requestMatchers("/", "/health", "/auth/**").permitAll()
it.requestMatchers("/properties/*/rooms/*/images/*/file").permitAll()
it.requestMatchers("/properties/*/rooms/*/images").permitAll()
it.requestMatchers("/properties/*/room-types").permitAll()
it.requestMatchers("/image-tags").permitAll()
it.anyRequest().authenticated()