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
Branches
Tags
No related merge requests found
......@@ -10,7 +10,7 @@ spring.datasource.driver-class-name=org.h2.Driver
spring.seconddatasource.driver-class-name=org.postgresql.Driver
spring.jpa.database=default
spring.jpa.show-sql=true
spring.jpa.show-sql=false
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=update
......
......@@ -34,7 +34,7 @@ public class MigrationController extends BaseController
private static class ReturnValues
{
public static final String MIGRATION_SETTINGS = "migration";
public static final String MIGRATION_SETTINGS = "migration/migration";
}
private final MigrationService migrationService;
......
<html>
<head>
<#import "helpers/header.ftl" as header>
<#import "../helpers/header.ftl" as header>
<@header.globals/>
<@header.header "BudgetMaster - ${locale.getString('title.migration')}"/>
<#import "/spring.ftl" as s>
</head>
<@header.body>
<#import "helpers/navbar.ftl" as navbar>
<#import "../helpers/navbar.ftl" as navbar>
<@navbar.navbar "migration" settings/>
<#import "helpers/validation.ftl" as validation>
<#import "../helpers/validation.ftl" as validation>
<main>
<div class="card main-card background-color">
......@@ -121,7 +121,7 @@
</main>
<!-- Scripts-->
<#import "helpers/scripts.ftl" as scripts>
<#import "../helpers/scripts.ftl" as scripts>
<@scripts.scripts/>
</@header.body>
</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