Changeset e45288f
- Timestamp:
- 01/22/25 02:40:20 (3 months ago)
- Branches:
- master
- Children:
- d39d68b
- Parents:
- ef41e8d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ReserveNGo-backend/src/main/java/mk/ukim/finki/it/reservengo/ReserveNGoApplication.java
ref41e8d re45288f 3 3 import org.springframework.boot.SpringApplication; 4 4 import org.springframework.boot.autoconfigure.SpringBootApplication; 5 import org.springframework.context.annotation.Bean; 6 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; 7 import org.springframework.security.crypto.password.PasswordEncoder; 8 5 9 6 10 @SpringBootApplication … … 11 15 } 12 16 17 @Bean 18 PasswordEncoder passwordEncoder() { 19 return new BCryptPasswordEncoder(10); 20 } 13 21 }
Note:
See TracChangeset
for help on using the changeset viewer.