mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
28 lines
517 B
JavaScript
28 lines
517 B
JavaScript
import { http } from '../services'
|
|
import { alerts } from '../utils'
|
|
import stub from '../stubs/settings'
|
|
|
|
export const settingStore = {
|
|
stub,
|
|
|
|
state: {
|
|
settings: []
|
|
},
|
|
|
|
init (settings) {
|
|
this.state.settings = settings
|
|
},
|
|
|
|
get all () {
|
|
return this.state.settings
|
|
},
|
|
|
|
update () {
|
|
return new Promise((resolve, reject) => {
|
|
http.post('settings', this.all, ({ data }) => {
|
|
alerts.success('Settings saved.')
|
|
resolve(data)
|
|
}, error => reject(error))
|
|
})
|
|
}
|
|
}
|