aboutsummaryrefslogtreecommitdiff
path: root/src/site/pages/dashboard/settings.vue
diff options
context:
space:
mode:
authorPitu <[email protected]>2019-04-24 08:36:28 +0000
committerPitu <[email protected]>2019-04-24 08:36:28 +0000
commit3bd8d119ba88e940932eca50be406d50d73040fb (patch)
tree9d24cdfc1edc53cce6670ffabb60597636571ecd /src/site/pages/dashboard/settings.vue
parentGet rid of the icons altogether in a future commit (diff)
downloadhost.fuwn.me-3bd8d119ba88e940932eca50be406d50d73040fb.tar.xz
host.fuwn.me-3bd8d119ba88e940932eca50be406d50d73040fb.zip
Refactor a bit since we globally catch API exceptions
Diffstat (limited to 'src/site/pages/dashboard/settings.vue')
-rw-r--r--src/site/pages/dashboard/settings.vue18
1 files changed, 4 insertions, 14 deletions
diff --git a/src/site/pages/dashboard/settings.vue b/src/site/pages/dashboard/settings.vue
index 23635ed..8aea325 100644
--- a/src/site/pages/dashboard/settings.vue
+++ b/src/site/pages/dashboard/settings.vue
@@ -151,13 +151,8 @@ export default {
},
methods: {
async getSettings() {
- try {
- const response = await this.$axios.$get(`service/config`);
- this.options = response.config;
- console.log(this.options);
- } catch (error) {
- this.$onPromiseError(error);
- }
+ const response = await this.$axios.$get(`service/config`);
+ this.options = response.config;
},
promptRestartService() {
this.$dialog.confirm({
@@ -166,13 +161,8 @@ export default {
});
},
async restartService() {
- try {
- const response = await this.$axios.$post(`service/restart`);
- this.$toast.open(response.message);
- return;
- } catch (error) {
- this.$onPromiseError(error);
- }
+ const response = await this.$axios.$post(`service/restart`);
+ this.$toast.open(response.message);
}
}
};