subscribers: Rename file to stream_edit_subscribers.js.

We are going to move to this code organization for
managing streams:

    stream_create.js
        stream_create_subscribers.js
    stream_edit.js
        stream_edit_subscribers.js

The modules stream_create.js and stream_edit.js historically
manage the entire process of creating and editing stream
data (respectively).

Going forward both will delegate most of the subscriber-specific
pieces to either stream_create_subscribers or stream_edit_subscribers.

The stream_*_subscribers modules will be somewhat similar in
nature, but the way that we manage subscribers at creation time
is a bit different than how we manage subscribers at edit time.
This commit is contained in:
Steve Howell
2022-02-21 17:42:35 +00:00
committed by Tim Abbott
parent 22660a78c7
commit ca17a452fd
5 changed files with 9 additions and 9 deletions

View File

@@ -85,9 +85,9 @@ import * as starred_messages from "./starred_messages";
import * as stream_bar from "./stream_bar";
import * as stream_data from "./stream_data";
import * as stream_edit from "./stream_edit";
import * as stream_edit_subscribers from "./stream_edit_subscribers";
import * as stream_list from "./stream_list";
import * as stream_settings_ui from "./stream_settings_ui";
import * as stream_subscribers_ui from "./stream_subscribers_ui";
import * as timerender from "./timerender";
import * as tippyjs from "./tippyjs";
import * as topic_list from "./topic_list";
@@ -609,7 +609,7 @@ export function initialize_everything() {
initialize_kitchen_sink_stuff();
echo.initialize();
stream_edit.initialize();
stream_subscribers_ui.initialize();
stream_edit_subscribers.initialize();
stream_data.initialize(stream_data_params);
pm_conversations.recent.initialize(pm_conversations_params);
muted_topics.initialize();