12 lines
396 B
JavaScript
12 lines
396 B
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
import RestAdapter from 'discourse/adapters/rest';
|
|
|
|
export default RestAdapter.extend({
|
|
find(store, type, findArgs) {
|
|
const maxReplies = Discourse.SiteSettings.max_reply_history;
|
|
return ajax(`/posts/${findArgs.postId}/reply-history?max_replies=${maxReplies}`).then(replies => {
|
|
return { post_reply_histories: replies };
|
|
});
|
|
},
|
|
});
|