settings: Rename user-list-admin to users.

Renaming the url for better readability on the user's side.
We've also added a redirect for this, which will change the `section`
from `user-list-admin` to `users` whenever required.
See https://github.com/zulip/zulip/pull/30268#discussion_r1631539656
This commit is contained in:
Shubham Padia
2024-06-12 08:59:52 +00:00
committed by Tim Abbott
parent 9c47a7be28
commit e4c89771fd
14 changed files with 33 additions and 14 deletions

View File

@@ -14,7 +14,7 @@ async function navigate_to_user_list(page: Page): Promise<void> {
await page.click(organization_settings);
await page.waitForSelector("#settings_overlay_container.show", {visible: true});
await page.click("li[data-section='user-list-admin']");
await page.click("li[data-section='users']");
}
async function user_row(page: Page, name: string): Promise<string> {