Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #260 from nameisaravind/allowUpd
Browse files Browse the repository at this point in the history
allow update status endpoint
  • Loading branch information
tatlax3636 authored Feb 14, 2022
2 parents a172d7c + c8877a2 commit d5ba71e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>api</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<version>3.4.29</version>
<version>3.4.30</version>
<description>Hygieia Rest API Layer</description>
<url>https://github.com/Hygieia/api</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ protected void configure(HttpSecurity http) throws Exception {
.antMatchers(HttpMethod.POST, "/generic-binary-artifact").permitAll()
.antMatchers(HttpMethod.POST, "/metadata/create").permitAll()
.antMatchers(HttpMethod.POST, "/v3/deploy").permitAll()
.antMatchers(HttpMethod.POST, "/autodiscovery/updateStatus").permitAll()
.anyRequest().authenticated()
.and()
.addFilterBefore(standardLoginRequestFilter(), UsernamePasswordAuthenticationFilter.class)
Expand Down

0 comments on commit d5ba71e

Please sign in to comment.