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/routes/chat-channel.js

13 lines
344 B
JavaScript

import DiscourseRoute from "discourse/routes/discourse";
import withChatChannel from "./chat-channel-decorator";
import { inject as service } from "@ember/service";
@withChatChannel
export default class ChatChannelRoute extends DiscourseRoute {
@service chatThreadsManager;
beforeModel() {
this.chatThreadsManager.resetCache();
}
}