summaryrefslogtreecommitdiff
path: root/app/controllers/groups/settings/ci_cd_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/settings/ci_cd_controller.rb')
-rw-r--r--app/controllers/groups/settings/ci_cd_controller.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/controllers/groups/settings/ci_cd_controller.rb b/app/controllers/groups/settings/ci_cd_controller.rb
index 18f336eae78..bf3a38ce57b 100644
--- a/app/controllers/groups/settings/ci_cd_controller.rb
+++ b/app/controllers/groups/settings/ci_cd_controller.rb
@@ -11,7 +11,15 @@ module Groups
end
before_action :define_variables, only: [:show]
+ NUMBER_OF_RUNNERS_PER_PAGE = 4
+
def show
+ runners_finder = Ci::RunnersFinder.new(current_user: current_user, group: @group, params: params)
+ # We need all runners for count
+ @all_group_runners = runners_finder.execute.except(:limit, :offset)
+ @group_runners = runners_finder.execute.page(params[:page]).per(NUMBER_OF_RUNNERS_PER_PAGE)
+
+ @sort = runners_finder.sort_key
end
def update