#54 user accounts - hide for now

This commit is contained in:
Avris 2020-10-15 20:59:41 +02:00
parent bd771b4c3c
commit 849f9c2b3e
1 changed files with 8 additions and 8 deletions

View File

@ -128,14 +128,14 @@
});
}
if (this.config.user.enabled) {
links.push({
link: '/' + this.config.user.route,
icon: 'user',
text: this.user ? '@' + this.user.username : this.$t('user.header'),
textLong: this.user ? '@' + this.user.username : this.$t('user.headerLong'),
});
}
// if (this.config.user.enabled) {
// links.push({
// link: '/' + this.config.user.route,
// icon: 'user',
// text: this.user ? '@' + this.user.username : this.$t('user.header'),
// textLong: this.user ? '@' + this.user.username : this.$t('user.headerLong'),
// });
// }
return links;
},