pipeline_quota_controller.rb 246 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
class Groups::PipelineQuotaController < Groups::ApplicationController
  before_action :authorize_admin_group!

  layout 'group_settings'

  def index
    @projects = @group.projects.with_shared_runners_limit_enabled.page(params[:page])
  end
end