blob: fde48328cf6f180670b544414632cb728cb1400c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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.RefreshCurrentAppConfigurationAsync();
}
}
|