mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
Ever since we started bundling the app with webpack, there’s been less and less overlap between our ‘static’ directory (files belonging to the frontend app) and Django’s interpretation of the ‘static’ directory (files served directly to the web). Split the app out to its own ‘web’ directory outside of ‘static’, and remove all the custom collectstatic --ignore rules. This makes it much clearer what’s actually being served to the web, and what’s being bundled by webpack. It also shrinks the release tarball by 3%. Signed-off-by: Anders Kaseorg <[email protected]>
18 lines
936 B
JavaScript
18 lines
936 B
JavaScript
// 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,
|
|
} from "./compose_validate";
|
|
export {private_message_recipient} from "./compose_state";
|
|
export {current as current_msg_list} from "./message_lists";
|
|
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";
|
|
export {page_params, page_params_parse_time} from "./page_params";
|
|
export {initiate as initiate_reload} from "./reload";
|
|
export {add_user_id_to_new_stream} from "./stream_create_subscribers";
|