mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 12:25:16 +00:00
Can change group conversations visibility
This commit is contained in:
@ -14,7 +14,13 @@
|
||||
</tr>
|
||||
<tr v-for="conv in conversations">
|
||||
<td>{{ conv.name }}</td>
|
||||
<td>{{ conv.group_min_membership_level }}</td>
|
||||
<td>
|
||||
<select class="form-control" v-model="conv.group_min_membership_level" style="height: 26px;line-height: 7px;padding: 2px;" @change="changeVisibility(conv)">
|
||||
<option value="member">tr("Members")</option>
|
||||
<option value="moderator">tr("Moderators")</option>
|
||||
<option value="administrator">tr("Administrators")</option>
|
||||
</select>
|
||||
</td>
|
||||
<td>
|
||||
<a style="color: white;" @click="deleteConv(conv.id)"><i class="fa fa-trash"></i></a>
|
||||
</td>
|
||||
|
Reference in New Issue
Block a user