koel/resources/assets/js/stores/setting.js
2015-12-16 00:28:54 +08:00

27 lines
507 B
JavaScript

import http from '../services/http';
import stub from '../stubs/settings';
import sharedStore from './shared';
export default {
stub,
state: {
settings: [],
},
init() {
this.state.settings = sharedStore.state.settings;
},
all() {
return this.state.settings;
},
update(cb = null, error = null) {
http.post('settings', this.all(), msg => {
if (cb) {
cb();
}
}, { error });
},
};