Skip to content
Snippets Groups Projects
Commit 93f33707 authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-4717 Rename to ProductionProperties

parent 4154ee55
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ public class FrontendEnvironmentController { ...@@ -16,7 +16,7 @@ public class FrontendEnvironmentController {
static final String PATH = "/api/environment"; // NOSONAR static final String PATH = "/api/environment"; // NOSONAR
private final StageProperties environmentProperties; private final ProductionProperties environmentProperties;
@GetMapping @GetMapping
public FrontendEnvironment getEnvironment() { public FrontendEnvironment getEnvironment() {
......
...@@ -31,7 +31,7 @@ import lombok.Setter; ...@@ -31,7 +31,7 @@ import lombok.Setter;
@Setter @Setter
@Configuration @Configuration
@ConfigurationProperties("ozgcloud") @ConfigurationProperties("ozgcloud")
public class StageProperties { public class ProductionProperties {
/** /**
* True if the angular frontend (admin client) should build in production mode. * True if the angular frontend (admin client) should build in production mode.
......
...@@ -29,7 +29,7 @@ class FrontendEnvironmentControllerTest { ...@@ -29,7 +29,7 @@ class FrontendEnvironmentControllerTest {
private FrontendEnvironmentController controller; private FrontendEnvironmentController controller;
@Mock @Mock
private StageProperties environmentProperties; private ProductionProperties environmentProperties;
private MockMvc mockMvc; private MockMvc mockMvc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment