This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/assets/javascripts/discourse/components/chat-channel-archive-status.hbs

16 lines
571 B
Handlebars

{{#if (and this.channel.archive_failed this.currentUser.admin)}}
<div class="alert alert-warn chat-channel-retry-archive">
<div class="chat-channel-archive-failed-message">
{{this.channelArchiveFailedMessage}}
</div>
<div class="chat-channel-archive-failed-retry">
<DButton @action={{action "retryArchive"}} @label="chat.channel_archive.retry" />
</div>
</div>
{{else if (and this.channel.archive_completed this.currentUser.admin)}}
<div class="chat-channel-archive-status">
{{this.channelArchiveCompletedMessage}}
</div>
{{/if}}