mirror of
https://github.com/koel/koel
synced 2025-01-08 02:38:45 +00:00
24 lines
409 B
JavaScript
24 lines
409 B
JavaScript
import { http } from '../services'
|
|
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 => resolve(data), r => reject(r))
|
|
})
|
|
}
|
|
}
|