Remove logout from profile

It's in the navbar

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2019-04-12 17:04:31 +02:00
parent 13b8f57468
commit 3b37e98806
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 0 additions and 14 deletions

View File

@ -76,15 +76,6 @@
/>
</div>
<div class="field is-grouped">
<p class="control">
<a
class="button"
@click="logoutUser()"
v-if="loggedPerson && loggedPerson.id === person.id"
>
<translate>User logout</translate>
</a>
</p>
<p class="control">
<a
class="button"
@ -138,11 +129,6 @@ export default class Profile extends Vue {
// this.fetchData()
}
logoutUser() {
// TODO : implement logout
this.$router.push({ name: RouteName.HOME });
}
nl2br(text) {
return text.replace(/(?:\r\n|\r|\n)/g, '<br>');
}