diff options
| author | Bob Van Landuyt <bob@vanlanduyt.co> | 2017-09-19 11:15:57 +0200 |
|---|---|---|
| committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2017-10-04 22:49:41 +0200 |
| commit | 31f775689396722e38de20157b46a75b1fe40582 (patch) | |
| tree | a91dfc0f12c5ac8b844094957519b131967d33f2 /app/controllers/groups_controller.rb | |
| parent | e3daa73fbfce6f178de512aeb165072f1ffde503 (diff) | |
| download | gitlab-ce-31f775689396722e38de20157b46a75b1fe40582.tar.gz | |
`current_user:` as a keyword argument
Diffstat (limited to 'app/controllers/groups_controller.rb')
| -rw-r--r-- | app/controllers/groups_controller.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index d35364ffe1e..1cec83a3bc6 100644 --- a/app/controllers/groups_controller.rb +++ b/app/controllers/groups_controller.rb @@ -118,7 +118,9 @@ class GroupsController < Groups::ApplicationController protected def setup_children(parent) - @children = GroupChildrenFinder.new(current_user, parent_group: parent, params: params).execute + @children = GroupChildrenFinder.new(current_user: current_user, + parent_group: parent, + params: params).execute @children = @children.page(params[:page]) end |
