mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-16 14:21:41 +00:00
fixed payload passed to sso/updateSSOSettings
This commit is contained in:
parent
1948e2a476
commit
c98a8ee776
1 changed files with 2 additions and 1 deletions
|
|
@ -89,6 +89,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
updateSSOIssuer(val) {
|
||||
this.oidc.issuer = val
|
||||
return
|
||||
this.updateSSOSettings({
|
||||
issuer: val
|
||||
|
|
@ -109,7 +110,7 @@ export default {
|
|||
saveSSOSettings(payload) {
|
||||
this.updatingSSOSettings = true
|
||||
this.$store
|
||||
.dispatch('sso/updateSSOSettings', payload)
|
||||
.dispatch('sso/updateSSOSettings', {oidc: this.oidc, permissions: this.permissions})
|
||||
.then((success) => {
|
||||
console.log('Updated SSO Settings', success)
|
||||
this.updatingSSOSettings = false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue