File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
backend/spring-boot/src/main/java/org/bugzkit/api/shared/config Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1616
1717@ Profile ("dev" )
1818@ Component
19- public class InitDevData implements ApplicationRunner {
19+ public class DevDataInit implements ApplicationRunner {
2020 private final UserRepository userRepository ;
2121 private final RoleRepository roleRepository ;
2222 private final PasswordEncoder passwordEncoder ;
@@ -25,7 +25,7 @@ public class InitDevData implements ApplicationRunner {
2525 @ Value ("${spring.security.user.password}" )
2626 private String password ;
2727
28- public InitDevData (
28+ public DevDataInit (
2929 UserRepository userRepository ,
3030 RoleRepository roleRepository ,
3131 PasswordEncoder passwordEncoder ) {
Original file line number Diff line number Diff line change 77
88@ Configuration
99@ Profile ("dev" )
10- class FlywayDevConfig {
10+ class DevFlywayConfig {
1111
1212 @ Bean
1313 FlywayMigrationStrategy cleanMigrate () {
You can’t perform that action at this time.
0 commit comments