Skip to content

Commit

Permalink
Corrected behaviour of singer-webapp-boot byt adding {noop} in front …
Browse files Browse the repository at this point in the history
…of the password to avoid adding a Password Encoder
  • Loading branch information
iuliana committed Feb 21, 2018
1 parent f1f6a13 commit 36853b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ protected void configure(HttpSecurity http) throws Exception {
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser("user").password("user").roles("USER");
.withUser("user").password("{noop}user").roles("USER");
}
}

0 comments on commit 36853b5

Please sign in to comment.