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: {
|
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…
Add table
Add a link
Reference in a new issue