fixed updateSSOSettings actions not being called because of missing sso/ prefix

This commit is contained in:
David Leimroth 2022-02-07 17:32:10 +01:00
parent e61d7f1ee8
commit 1948e2a476

View File

@ -107,10 +107,9 @@ export default {
})
},
saveSSOSettings(payload) {
console.log(this)
this.updatingSSOSettings = true
this.$store
.dispatch('updateSSOSettings', payload)
.dispatch('sso/updateSSOSettings', payload)
.then((success) => {
console.log('Updated SSO Settings', success)
this.updatingSSOSettings = false