mirror of
https://github.com/discourse/discourse.git
synced 2024-12-22 17:23:46 +08:00
c15b4212b6
- chat-message is not using chat-api yet and the `jsonMode` shouldn't have been added - correctly error on `getChannel` not found - adds/correct relevant system tests
23 lines
621 B
JavaScript
23 lines
621 B
JavaScript
import RESTAdapter from "discourse/adapters/rest";
|
|
|
|
export default class ChatMessage extends RESTAdapter {
|
|
pathFor(store, type, findArgs) {
|
|
if (findArgs.targetMessageId) {
|
|
return `/chat/lookup/${findArgs.targetMessageId}.json?chat_channel_id=${findArgs.channelId}`;
|
|
}
|
|
|
|
let path = `/chat/${findArgs.channelId}/messages.json?page_size=${findArgs.pageSize}`;
|
|
if (findArgs.messageId) {
|
|
path += `&message_id=${findArgs.messageId}`;
|
|
}
|
|
if (findArgs.direction) {
|
|
path += `&direction=${findArgs.direction}`;
|
|
}
|
|
return path;
|
|
}
|
|
|
|
apiNameFor() {
|
|
return "chat-message";
|
|
}
|
|
}
|