-
Notifications
You must be signed in to change notification settings - Fork 298
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
Add filtering by team, is_currently_oncall and search on the user page #4575
Changes from 4 commits
4732749
5c0ab65
9dbcf01
5f3090c
0b8e69c
fcef630
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -234,6 +234,7 @@ class UserView( | |
"send_test_sms": [RBACPermission.Permissions.USER_SETTINGS_WRITE], | ||
"export_token": [RBACPermission.Permissions.USER_SETTINGS_WRITE], | ||
"upcoming_shifts": [RBACPermission.Permissions.USER_SETTINGS_READ], | ||
"filters": [RBACPermission.Permissions.USER_SETTINGS_READ], | ||
} | ||
|
||
rbac_object_permissions = { | ||
|
@@ -841,6 +842,25 @@ def export_token(self, request, pk) -> Response: | |
return Response(status=status.HTTP_204_NO_CONTENT) | ||
return Response(status=status.HTTP_405_METHOD_NOT_ALLOWED) | ||
|
||
@action(methods=["get"], detail=False) | ||
def filters(self, request): | ||
filter_name = request.query_params.get("search", None) | ||
api_root = "/api/internal/v1/" | ||
|
||
filter_options = [ | ||
{ | ||
"name": "team", | ||
"type": "team_select", | ||
"href": api_root + "teams/", | ||
"global": True, | ||
}, | ||
] | ||
|
||
if filter_name is not None: | ||
filter_options = list(filter(lambda f: filter_name in f["name"], filter_options)) | ||
Comment on lines
+885
to
+886
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does the frontend use this search functionality? if not, I think it might make sense to remove this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, it does There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can't find any usages in the frontend code 🤔 Am I missing something? |
||
|
||
return Response(filter_options) | ||
|
||
|
||
def handle_phone_notificator_failed(exc: BaseFailed) -> Response: | ||
if exc.graceful_msg: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we have openapi docs for the
/users
routes (code). do we need to add anything here to document this new endpoint?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point, added