Skip to content
Snippets Groups Projects
Commit 4fa5c46b authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#663 - refactor: moved migration page to own package

parent 6a0896b8
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ spring.datasource.driver-class-name=org.h2.Driver ...@@ -10,7 +10,7 @@ spring.datasource.driver-class-name=org.h2.Driver
spring.seconddatasource.driver-class-name=org.postgresql.Driver spring.seconddatasource.driver-class-name=org.postgresql.Driver
spring.jpa.database=default spring.jpa.database=default
spring.jpa.show-sql=true spring.jpa.show-sql=false
spring.jpa.generate-ddl=true spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=update spring.jpa.hibernate.ddl-auto=update
......
...@@ -34,7 +34,7 @@ public class MigrationController extends BaseController ...@@ -34,7 +34,7 @@ public class MigrationController extends BaseController
private static class ReturnValues private static class ReturnValues
{ {
public static final String MIGRATION_SETTINGS = "migration"; public static final String MIGRATION_SETTINGS = "migration/migration";
} }
private final MigrationService migrationService; private final MigrationService migrationService;
......
<html> <html>
<head> <head>
<#import "helpers/header.ftl" as header> <#import "../helpers/header.ftl" as header>
<@header.globals/> <@header.globals/>
<@header.header "BudgetMaster - ${locale.getString('title.migration')}"/> <@header.header "BudgetMaster - ${locale.getString('title.migration')}"/>
<#import "/spring.ftl" as s> <#import "/spring.ftl" as s>
</head> </head>
<@header.body> <@header.body>
<#import "helpers/navbar.ftl" as navbar> <#import "../helpers/navbar.ftl" as navbar>
<@navbar.navbar "migration" settings/> <@navbar.navbar "migration" settings/>
<#import "helpers/validation.ftl" as validation> <#import "../helpers/validation.ftl" as validation>
<main> <main>
<div class="card main-card background-color"> <div class="card main-card background-color">
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
</main> </main>
<!-- Scripts--> <!-- Scripts-->
<#import "helpers/scripts.ftl" as scripts> <#import "../helpers/scripts.ftl" as scripts>
<@scripts.scripts/> <@scripts.scripts/>
</@header.body> </@header.body>
</html> </html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment