- Timestamp:
- 02/04/23 18:48:07 (22 months ago)
- Branches:
- master
- Children:
- 6032d44
- Parents:
- adf250d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/model/Customer.java
radf250d r27adfc8 25 25 Integer points; 26 26 27 // public Customer(String password, String first_name, String last_name, String address, String contact_number, String username) { 28 // super(password, first_name, last_name, address, contact_number, username); 29 // } 30 27 31 @Override 28 32 public Collection<? extends GrantedAuthority> getAuthorities() { 29 return Collections.singletonList(Role.ROLE_ ADMIN);33 return Collections.singletonList(Role.ROLE_USER); 30 34 } 31 35
Note:
See TracChangeset
for help on using the changeset viewer.