mirror of
https://github.com/discourse/discourse.git
synced 2025-02-19 22:54:00 +08:00
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";
|
||
|
}
|
||
|
}
|