Make channels unencrypted

Also, show info about older messages being deleted in rooms with message retention set.
This commit is contained in:
N-Pex 2024-06-05 15:44:34 +02:00
parent 057561ff4a
commit 54982298fa
4 changed files with 51 additions and 8 deletions

View file

@ -0,0 +1,37 @@
<template>
<div class="created-room-welcome-header">
<div class="mt-2" v-if="roomMessageRetention() > 0">
<i18n path="room_welcome.info_retention_user" tag="span">
<template v-slot:time>
<b>{{ messageRetentionDisplay }}</b>
</template>
</i18n>
</div>
</div>
</template>
<script>
import roomInfoMixin from "../roomInfoMixin";
export default {
name: "WelcomeHeaderChannelUser",
mixins: [roomInfoMixin],
components: {
},
computed: {
},
data() {
return {
}
},
methods: {
onMessageRetention(ignoredretention) {
this.updateMessageRetention();
},
}
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>