Skip to content
Snippets Groups Projects
Commit ada79a38 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6989 OZG-7214 Property for dms

parent 6a3c54ad
No related branches found
No related tags found
No related merge requests found
...@@ -14,3 +14,5 @@ ozgcloud: ...@@ -14,3 +14,5 @@ ozgcloud:
production: false production: false
stage: stage:
production: false production: false
dms:
enabled: true
...@@ -13,3 +13,5 @@ ozgcloud: ...@@ -13,3 +13,5 @@ ozgcloud:
url: /assets/benutzerleitfaden/benutzerleitfaden.pdf url: /assets/benutzerleitfaden/benutzerleitfaden.pdf
user-manager: user-manager:
url: http://localhost:9092 url: http://localhost:9092
dms:
enabled: true
...@@ -31,6 +31,8 @@ ozgcloud: ...@@ -31,6 +31,8 @@ ozgcloud:
url: http://localhost:9092 url: http://localhost:9092
profile-template: /api/userProfiles/%s profile-template: /api/userProfiles/%s
search-template: /api/userProfiles/?searchBy={searchBy} search-template: /api/userProfiles/?searchBy={searchBy}
dms:
enabled: true
keycloak: keycloak:
auth-server-url: http://localhost:8088 auth-server-url: http://localhost:8088
......
...@@ -100,3 +100,5 @@ ozgcloud: ...@@ -100,3 +100,5 @@ ozgcloud:
user-manager: user-manager:
profile-template: /api/userProfiles/%s profile-template: /api/userProfiles/%s
search-template: /api/userProfiles/?searchBy={searchBy} search-template: /api/userProfiles/?searchBy={searchBy}
dms:
enabled: false
package de.ozgcloud.alfa.export;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@Configuration
@ConfigurationProperties("ozgcloud.dms")
class DmsProperties {
private boolean enabled;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment