mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 09:20:24 +08:00
9 lines
255 B
JavaScript
9 lines
255 B
JavaScript
|
export default function applyDefaultHandlers(helpers) {
|
||
|
this.post("/chat/api/channels/:channel_id/drafts", () =>
|
||
|
helpers.response({})
|
||
|
);
|
||
|
this.post("/chat/api/channels/:channel_id/threads/:thread_id/drafts", () =>
|
||
|
helpers.response({})
|
||
|
);
|
||
|
}
|