This commit includes: * Additions to message and channel serializers for threads * New route and controller for a single thread * JS route for thread pane * Extremely basic thread pane component * Additions to channel manager to deal with threads, and ChatThread JS model * Changes to chat publisher and existing JS to get new thread ID when message is created
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
export default function () {
|
|
this.route("chat", { path: "/chat" }, function () {
|
|
// TODO(roman): Remove after the 3.1 release
|
|
this.route("channel-legacy", {
|
|
path: "/channel/:channelId/:channelTitle",
|
|
});
|
|
|
|
this.route("channel", { path: "/c/:channelTitle/:channelId" }, function () {
|
|
this.route("from-params", { path: "/" });
|
|
this.route("near-message", { path: "/:messageId" });
|
|
|
|
this.route("info", { path: "/info" }, function () {
|
|
this.route("about", { path: "/about" });
|
|
this.route("members", { path: "/members" });
|
|
this.route("settings", { path: "/settings" });
|
|
});
|
|
|
|
this.route("thread", { path: "/t/:threadId" });
|
|
});
|
|
|
|
this.route("draft-channel", { path: "/draft-channel" });
|
|
this.route("browse", { path: "/browse" }, function () {
|
|
this.route("all", { path: "/all" });
|
|
this.route("closed", { path: "/closed" });
|
|
this.route("open", { path: "/open" });
|
|
this.route("archived", { path: "/archived" });
|
|
});
|
|
this.route("message", { path: "/message/:messageId" });
|
|
});
|
|
}
|