This commit is contained in:
jasquat 2023-08-21 13:33:25 -04:00
parent dc2d163785
commit a9b6f05e14
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@ export default function AuthenticationConfiguration() {
const saveAuthConfig = () => { const saveAuthConfig = () => {
HttpService.makeCallToBackend({ HttpService.makeCallToBackend({
path: '/authentication/configuration', path: '/authentication/configuration',
successCallback: () => { window.location.reload() }, successCallback: () => {
window.location.reload();
},
httpMethod: 'PUT', httpMethod: 'PUT',
postBody: { value: authConfig }, postBody: { value: authConfig },
}); });