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-thread-panel.hbs

16 lines
440 B
Handlebars

<div
class={{concat-class
"chat-thread-panel"
(if this.chat.activeThread "chat-thread-pane--active-thread")
}}
>
<p>Thread ID
{{this.chat.activeThread.id}}, started by
{{this.chat.activeThread.original_message_user.username}}</p>
<p>Excerpt: {{this.chat.activeThread.original_message_excerpt}}</p>
<LinkTo @route="chat.channel" @models={{this.chat.activeChannel.routeModels}}>
Close Thread
</LinkTo>
</div>