-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve Team Management flow on UI #8204
Merged
krrishdholakia
merged 9 commits into
litellm_dev_02_01_2025_p4
from
litellm_dev_02_01_2025_p5
Feb 3, 2025
Merged
Improve Team Management flow on UI #8204
krrishdholakia
merged 9 commits into
litellm_dev_02_01_2025_p4
from
litellm_dev_02_01_2025_p5
Feb 3, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…s to a team make a row in table clickable -> allows user to add users to team they intended
…team details simplifies team management by putting team details on separate page
make it easy for user to understand the information they're seeing
allow user to delete accidental adds
…w filtering on user table allows proxy admin to quickly find user they're looking for
allows proxy admin to easily find team they're looking for
…ng new user to teams
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
7def926
into
litellm_dev_02_01_2025_p4
25 of 28 checks passed
krrishdholakia
added a commit
that referenced
this pull request
Feb 3, 2025
* fix(ui_sso.py): use common `get_user_object` logic across jwt + ui sso auth Allows finding users by their email, and attaching the sso user id to the user if found * Improve Team Management flow on UI (#8204) * build(teams.tsx): refactor teams page to make it easier to add members to a team make a row in table clickable -> allows user to add users to team they intended * build(teams.tsx): make it clear user should click on team id to view team details simplifies team management by putting team details on separate page * build(team_info.tsx): separately show user id and user email make it easy for user to understand the information they're seeing * build(team_info.tsx): add back in 'add member' button * build(team_info.tsx): working team member update on team_info.tsx * build(team_info.tsx): enable team member delete on ui allow user to delete accidental adds * build(internal_user_endpoints.py): expose new endpoint for ui to allow filtering on user table allows proxy admin to quickly find user they're looking for * feat(team_endpoints.py): expose new team filter endpoint for ui allows proxy admin to easily find team they're looking for * feat(user_search_modal.tsx): allow admin to filter on users when adding new user to teams * test: mark flaky test * test: mark flaky test * fix(exception_mapping_utils.py): fix anthropic text route error * fix(ui_sso.py): handle situation when user not in db
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
make a row in table clickable -> allows user to add users to team they intended
simplifies team management by putting team details on separate page
make it easy for user to understand the information they're seeing
build(team_info.tsx): add back in 'add member' button
build(team_info.tsx): working team member update on team_info.tsx
build(team_info.tsx): enable team member delete on ui
allow user to delete accidental adds
allows proxy admin to quickly find user they're looking for
allows proxy admin to easily find team they're looking for