Skip to content
Snippets Groups Projects
Commit 2660e83c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Add group filtering by name for API

parent da9d8279
No related branches found
No related tags found
No related merge requests found
Loading
@@ -19,6 +19,8 @@ GET /groups
Loading
@@ -19,6 +19,8 @@ GET /groups
] ]
``` ```
   
You can search for groups by name or path with: `/groups?search=Rails`
## Details of a group ## Details of a group
   
Get all details of a group. Get all details of a group.
Loading
Loading
Loading
@@ -25,11 +25,14 @@ module API
Loading
@@ -25,11 +25,14 @@ module API
# Example Request: # Example Request:
# GET /groups # GET /groups
get do get do
if current_user.admin @groups = if current_user.admin
@groups = paginate Group Group.all
else else
@groups = paginate current_user.groups current_user.groups
end end
@groups = @groups.search(params[:search]) if params[:search].present?
@groups = paginate @groups
present @groups, with: Entities::Group present @groups, with: Entities::Group
end end
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment