Load users presence

This commit is contained in:
2021-04-21 16:48:50 +02:00
parent 8705fc6581
commit 5f5f27e79d
7 changed files with 76 additions and 0 deletions

View File

@ -5,6 +5,9 @@
<ul class="nav nav-tabs group-page-tabs" style="display: flex; flex-wrap: wrap; justify-content: start;">
<li v-bind:class="activePage == 'posts' ? 'active': ''"><a @click="openPage('posts')">tr("Posts")</a></li>
<!-- Forez presence -->
<li v-bind:class="activePage == 'presence' ? 'active': ''"><a @click="openPage('presence')" v-if="is_forez">tr("Presence")</a></li>
<!-- Group conversations -->
<li v-for="conv in conversations" v-bind:class="activePage == 'conversation' && firstArgument == conv.id ? 'active': ''">
<a @click="openPage('conversation/' + conv.id)">{{conv.name}}</a></li>