diff options
| author | 2024-02-13 19:23:46 +0000 | |
|---|---|---|
| committer | 2024-02-13 19:38:40 +0000 | |
| commit | fdcb22e281edf9823fb715f97610e6936565be8d (patch) | |
| tree | 5cfce025fe22527f3238244ed99a0bb8aeda39f8 /arthur/apis/grafana/__init__.py | |
| parent | Don't keep track of the set of users added to Grafana team (diff) | |
Add API wrapper to remove a user from a Grafana team
Diffstat (limited to 'arthur/apis/grafana/__init__.py')
| -rw-r--r-- | arthur/apis/grafana/__init__.py | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/arthur/apis/grafana/__init__.py b/arthur/apis/grafana/__init__.py index 9e9910b..c55b74b 100644 --- a/arthur/apis/grafana/__init__.py +++ b/arthur/apis/grafana/__init__.py @@ -1,8 +1,15 @@ -from .teams import add_user_to_team, get_all_users, list_team_members, list_teams +from .teams import ( +    add_user_to_team, +    get_all_users, +    list_team_members, +    list_teams, +    remove_user_from_team, +)  __all__ = (      "add_user_to_team",      "get_all_users",      "list_team_members",      "list_teams", +    "remove_user_from_team",  )  |