Skip to content

Commit

Permalink
fix: P4ADEV-1811-upload-ingestion-flow-file (#13)
Browse files Browse the repository at this point in the history
Co-authored-by: mscarsel <[email protected]>
  • Loading branch information
MScarsella and mscarsel authored Jan 17, 2025
1 parent 6a0f23b commit 3860576
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration;
import org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration;

@SpringBootApplication(exclude = UserDetailsServiceAutoConfiguration.class)
@SpringBootApplication(exclude = {UserDetailsServiceAutoConfiguration.class, ErrorMvcAutoConfiguration.class})
public class FileShareApplication {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
"/actuator",
"/actuator/**"
).permitAll()

.anyRequest().authenticated()
)
.sessionManagement(session -> session
Expand Down

0 comments on commit 3860576

Please sign in to comment.