This commit is contained in:
jasquat 2023-08-21 13:33:25 -04:00
parent ef9baad917
commit 5d00328da9
No known key found for this signature in database
1 changed files with 3 additions and 1 deletions

View File

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