Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mpgxvii committed Sep 16, 2024
2 parents 1bac662 + cb20142 commit 93e18fb
Show file tree
Hide file tree
Showing 30 changed files with 422 additions and 2,777 deletions.

This file was deleted.

This file was deleted.

1 change: 1 addition & 0 deletions src/main/docker/managementportal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
- MANAGEMENTPORTAL_IDENTITYSERVER_LOGINURL=http://localhost:3000
- MANAGEMENTPORTAL_IDENTITYSERVER_SERVERADMINURL=http://kratos:4434
- MANAGEMENTPORTAL_AUTHSERVER_SERVERURL=http://hydra:4444
- MANAGEMENTPORTAL_AUTHSERVER_LOGINURL=http://localhost:4444
- MANAGEMENTPORTAL_AUTHSERVER_SERVERADMINURL=http://hydra:4445
- JHIPSTER_SLEEP=10 # gives time for the database to boot before the application
- JAVA_OPTS=-Xmx512m -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 #enables remote debugging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public class ManagementPortalProperties {

private final IdentityServer identityServer = new IdentityServer();

private final AuthServer authServer = new AuthServer();

private final Mail mail = new Mail();

private final Frontend frontend = new Frontend();
Expand All @@ -34,6 +36,10 @@ public IdentityServer getIdentityServer() {
return identityServer;
}

public AuthServer getAuthServer() {
return authServer;
}

public ManagementPortalProperties.Mail getMail() {
return mail;
}
Expand Down Expand Up @@ -324,6 +330,37 @@ public void setLoginUrl(String loginUrl) {
}
}

public class AuthServer {
private String serverUrl = null;
private String serverAdminUrl = null;
private String loginUrl = null;

public String getServerUrl() {
return serverUrl;
}

public void setServerUrl(String serverUrl) {
this.serverUrl = serverUrl;
}

public String getServerAdminUrl() {
return serverAdminUrl;
}

public void setServerAdminUrl(String serverAdminUrl) {
this.serverAdminUrl = serverAdminUrl;
}

public String getLoginUrl() {
return loginUrl;
}

public void setLoginUrl(String loginUrl) {
this.loginUrl = loginUrl;
}
}


public static class CatalogueServer {

private boolean enableAutoImport = false;
Expand Down

This file was deleted.

Loading

0 comments on commit 93e18fb

Please sign in to comment.