mirror of
https://github.com/zulip/zulip.git
synced 2025-11-21 15:09:34 +00:00
This commit removes dependency on `filter.js` by lifting the construction of `Filter` object up in `all_messages_data.js`.
8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
import {Filter} from "./filter";
|
|
import {MessageListData} from "./message_list_data";
|
|
|
|
export const all_messages_data = new MessageListData({
|
|
excludes_muted_topics: false,
|
|
filter: new Filter(),
|
|
});
|