koel/resources/assets/js/stores/setting.js
2015-12-29 08:22:38 +07:00

26 lines
461 B
JavaScript

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