mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 14:35:27 +00:00
This is preparatory commit that does basic UI set up for user group edit in group settings overlay. This allows us to write proper hashchange logic for user group settings overlay under diffrent situations. The work in this commit will be extended in further commits to add proper UI and group edit logic.
8 lines
301 B
JavaScript
8 lines
301 B
JavaScript
import * as user_group_edit from "./user_group_edit";
|
|
|
|
// This module will handle ui updates logic for group settings,
|
|
// and is analogous to stream_ui_updates.js for stream settings.
|
|
export function update_toggler_for_group_setting() {
|
|
user_group_edit.toggler.goto(user_group_edit.select_tab);
|
|
}
|