aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/Endpoints/Internal/Root/RefreshConfigurationRoute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Endpoints/Internal/Root/RefreshConfigurationRoute.cs')
-rw-r--r--server/src/Endpoints/Internal/Root/RefreshConfigurationRoute.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/server/src/Endpoints/Internal/Root/RefreshConfigurationRoute.cs b/server/src/Endpoints/Internal/Root/RefreshConfigurationRoute.cs
deleted file mode 100644
index 4b1beec..0000000
--- a/server/src/Endpoints/Internal/Root/RefreshConfigurationRoute.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-namespace IOL.GreatOffice.Api.Endpoints.Internal.Root;
-
-public class RefreshConfigurationRoute : RouteBaseSync.WithoutRequest.WithoutResult
-{
- private readonly VaultService _vaultService;
-
- public RefreshConfigurationRoute(VaultService vaultService) {
- _vaultService = vaultService;
- }
-
- [HttpGet("~/_/refresh-configuration")]
- public override void Handle() {
- _vaultService.RefreshCurrentAppConfiguration();
- }
-}