mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-28 13:46:20 +02:00
fixed payload passed to sso/updateSSOSettings
This commit is contained in:
parent
1948e2a476
commit
c98a8ee776
@ -89,6 +89,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateSSOIssuer(val) {
|
updateSSOIssuer(val) {
|
||||||
|
this.oidc.issuer = val
|
||||||
return
|
return
|
||||||
this.updateSSOSettings({
|
this.updateSSOSettings({
|
||||||
issuer: val
|
issuer: val
|
||||||
@ -109,7 +110,7 @@ export default {
|
|||||||
saveSSOSettings(payload) {
|
saveSSOSettings(payload) {
|
||||||
this.updatingSSOSettings = true
|
this.updatingSSOSettings = true
|
||||||
this.$store
|
this.$store
|
||||||
.dispatch('sso/updateSSOSettings', payload)
|
.dispatch('sso/updateSSOSettings', {oidc: this.oidc, permissions: this.permissions})
|
||||||
.then((success) => {
|
.then((success) => {
|
||||||
console.log('Updated SSO Settings', success)
|
console.log('Updated SSO Settings', success)
|
||||||
this.updatingSSOSettings = false
|
this.updatingSSOSettings = false
|
||||||
|
Loading…
Reference in New Issue
Block a user