Add "My rooms" link to profile page

This commit is contained in:
N-Pex 2025-04-23 17:28:53 +02:00
parent 8feec77e62
commit a30ed8530e
3 changed files with 18 additions and 0 deletions

View file

@ -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() {