Add "My rooms" link to profile page
This commit is contained in:
parent
8feec77e62
commit
a30ed8530e
3 changed files with 18 additions and 0 deletions
|
|
@ -84,6 +84,12 @@
|
|||
:icon="'$vuetify.icons.edit'"
|
||||
:text="$t('profile.change_name')"
|
||||
/>
|
||||
<ActionRow
|
||||
@click="goHome"
|
||||
:icon="'$vuetify.icons.ic_rooms'"
|
||||
:text="$t('profile.my_rooms')"
|
||||
/>
|
||||
|
||||
<ActionRow
|
||||
@click="showSelectLanguageDialog = true"
|
||||
:icon="'$vuetify.icons.globe'"
|
||||
|
|
@ -404,6 +410,10 @@ export default {
|
|||
onNotifyDialogClosed() {
|
||||
this.updateGlobalNotificationStore(false);
|
||||
this.notificationDialog = false;
|
||||
},
|
||||
|
||||
goHome() {
|
||||
this.$navigation.push({ name: "Home" }, -1);
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue