mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
directly return number of active users from backend for usage display
This commit is contained in:
@@ -152,6 +152,11 @@ def get_models_in_use():
|
||||
return models_in_use
|
||||
|
||||
|
||||
def get_active_users_count():
|
||||
"""Get the number of active users."""
|
||||
return len(USER_POOL)
|
||||
|
||||
|
||||
def get_active_user_ids():
|
||||
"""Get the list of active user IDs."""
|
||||
return list(USER_POOL.keys())
|
||||
|
||||
Reference in New Issue
Block a user