matiasmenares/Nissboard

View on GitHub
src/components/public/mixins/var_config_dashboard.js

Summary

Maintainability
C
7 hrs
Test Coverage
export default {
beforeMount(){
this.set_dashboard_active()
},
methods: {
set_dashboard_active(){
Similar blocks of code found in 3 locations. Consider refactoring.
this.axios.post("/var_config", {var_config: { var_config_id: 3, value: true}}).then(result => {
console.log(result)
}).catch(error => {
console.log(error);
})
Similar blocks of code found in 3 locations. Consider refactoring.
this.axios.post("/var_config", {var_config: { var_config_id: 1, value: false}}).then(result => {
console.log(result)
}).catch(error => {
console.log(error);
})
Similar blocks of code found in 3 locations. Consider refactoring.
this.axios.post("/var_config", {var_config: { var_config_id: 4, value: false}}).then(result => {
console.log(result)
}).catch(error => {
console.log(error);
})
},
}
}