2021-03-01 23:33:52 +01:00
|
|
|
// This module, exposed through the zulip_test global variable,
|
|
|
|
// re-exports certain internal functions so they can be used by the
|
|
|
|
// Puppeteer tests. It should not be used in the code itself.
|
|
|
|
|
|
|
|
export {
|
|
|
|
set_wildcard_mention_large_stream_threshold,
|
|
|
|
wildcard_mention_large_stream_threshold,
|
2021-06-25 15:16:29 +02:00
|
|
|
} from "./compose_validate";
|
2021-03-01 23:33:52 +01:00
|
|
|
export {private_message_recipient} from "./compose_state";
|
2021-03-30 02:21:21 +02:00
|
|
|
export {current as current_msg_list} from "./message_lists";
|
2021-03-01 23:33:52 +01:00
|
|
|
export {get_stream_id, get_sub, get_subscriber_count} from "./stream_data";
|
|
|
|
export {get_by_user_id as get_person_by_user_id, get_user_id_from_name} from "./people";
|
|
|
|
export {last_visible as last_visible_row, id as row_id} from "./rows";
|
|
|
|
export {cancel as cancel_compose} from "./compose_actions";
|
2021-06-22 18:58:47 +02:00
|
|
|
export {page_params, page_params_parse_time} from "./page_params";
|
2021-03-01 23:33:52 +01:00
|
|
|
export {initiate as initiate_reload} from "./reload";
|
2022-02-08 18:56:40 +01:00
|
|
|
export {add_user_id_to_new_stream} from "./stream_create_subscribers";
|