diff --git a/config/postes.yml b/config/config.yml similarity index 100% rename from config/postes.yml rename to config/config.yml diff --git a/src/store/modules/config.js b/src/store/modules/config.js index be1ed6f..063244e 100644 --- a/src/store/modules/config.js +++ b/src/store/modules/config.js @@ -7,7 +7,7 @@ export default { state: { data_dir: '/home/lafrite/scripts/comptes/data/', config_dir: '/home/lafrite/scripts/comptes/config/', - postes_filename: 'postes.yml', + config_filename: 'config.yml', postes: {} }, getters: { @@ -17,8 +17,8 @@ export default { config_dir: (state) => { return state.config_dir }, - postes_filename: (state) => { - return state.postes_filename + config_filename: (state) => { + return state.config_filename }, postes: (state) => { return state.postes @@ -30,8 +30,8 @@ export default { } }, actions: { - load_postes (context) { - readFile(path.join(context.getters.config_dir, context.getters.postes_filename), 'utf8', (err, content) => { + load(context) { + readFile(path.join(context.getters.config_dir, context.getters.config_filename), 'utf8', (err, content) => { if (err) { console.log(err) } else { diff --git a/src/views/home.vue b/src/views/home.vue index bedbec0..6faf4f0 100644 --- a/src/views/home.vue +++ b/src/views/home.vue @@ -55,7 +55,7 @@ export default { } }, mounted: function () { - this.$store.dispatch('config/load_postes') + this.$store.dispatch('config/load') this.$store.dispatch('datas/find_csv') }, computed: {