remove old header

This commit is contained in:
ard333
2019-03-28 22:22:44 +07:00
parent 4ea8285872
commit e960104c0a
3 changed files with 2 additions and 5 deletions

View File

@@ -22,6 +22,8 @@ import lombok.ToString;
@ToString @AllArgsConstructor @NoArgsConstructor
public class User implements UserDetails {
private static final long serialVersionUID = 1L;
private String username;
private String password;

View File

@@ -1,7 +1,3 @@
/*
* Ardiansyah | http://ard.web.id
*
*/
package com.ard333.springbootwebfluxjjwt.rest;
import com.ard333.springbootwebfluxjjwt.model.Message;

View File

@@ -48,6 +48,5 @@ public class WebSecurityConfig {
.pathMatchers("/login").permitAll()
.anyExchange().authenticated()
.and().build();
}
}