aboutsummaryrefslogtreecommitdiff
path: root/src/components/side_drawer/side_drawer.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/side_drawer/side_drawer.js')
-rw-r--r--src/components/side_drawer/side_drawer.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/side_drawer/side_drawer.js b/src/components/side_drawer/side_drawer.js
index b1b7701c..6541077b 100644
--- a/src/components/side_drawer/side_drawer.js
+++ b/src/components/side_drawer/side_drawer.js
@@ -1,5 +1,5 @@
const SideDrawer = {
- props: [ 'activatePanel', 'closed', 'clickoutside' ],
+ props: [ 'activatePanel', 'closed', 'clickoutside', 'logout' ],
computed: {
currentUser () {
return this.$store.state.users.currentUser
@@ -14,6 +14,10 @@ const SideDrawer = {
if (typeof this.clickoutside === 'function') {
this.clickoutside()
}
+ },
+ doLogout () {
+ this.logout()
+ this.gotoPanel('timeline')
}
}
}