summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DashboardPage.vue
diff options
context:
space:
mode:
authorUdo Walter2019-02-22 02:54:43 +0100
committerUdo Walter2019-02-22 02:54:43 +0100
commit0def171554ba84b48938fa142c408f80f24d70ab (patch)
treea9681ee0e3932ca6165ed222dc5f0eedff1c2572 /webapp/src/components/DashboardPage.vue
parent[ipxe builder] Add cancel button for the ipxe building process, limit log to ... (diff)
downloadbas-0def171554ba84b48938fa142c408f80f24d70ab.tar.gz
bas-0def171554ba84b48938fa142c408f80f24d70ab.tar.xz
bas-0def171554ba84b48938fa142c408f80f24d70ab.zip
rework user api to rest
Diffstat (limited to 'webapp/src/components/DashboardPage.vue')
-rw-r--r--webapp/src/components/DashboardPage.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/DashboardPage.vue b/webapp/src/components/DashboardPage.vue
index 922b14b..4b92de4 100644
--- a/webapp/src/components/DashboardPage.vue
+++ b/webapp/src/components/DashboardPage.vue
@@ -198,7 +198,7 @@ export default {
},
created () {
if (this.settings.mini && this.desktop) this.drawerOpen = true
- this.$http('/api/users/getUserInfo').then(response => {
+ this.$http('/api/users/current').then(response => {
this.userFullName = response.data.name
})
}