Merge branch '630-add-link-to-my-rooms-from-the-profile-page' into 'dev'

Add "My rooms" link to profile page

For issue #630

See merge request keanuapp/keanuapp-weblite!342
This commit is contained in:
N Pex 2025-04-23 15:31:48 +00:00
commit fafcfac609
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() {