Skip to content
Snippets Groups Projects
Unverified Commit a2c17ce1 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre
Browse files

Make Rubocop happy

parent 16bb9433
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -16,7 +16,7 @@ class Projects::ForksController < Projects::ApplicationController
@internal_forks_count = @total_forks_count - @public_forks_count - @private_forks_count
 
@forks = ForkProjectsFinder.new(project, params: params.merge(search: params[:filter_projects]), current_user: current_user).execute
@forks = @forks.eager_load_namespace_and_owner.includes(:creator).with_route.page(params[:page])
@forks = @forks.eager_load_namespace_and_owner.inc_creator.with_route.page(params[:page])
 
respond_to do |format|
format.html
Loading
Loading
Loading
Loading
@@ -417,6 +417,7 @@ class Project < ApplicationRecord
scope :with_merge_requests_available_for_user, ->(current_user) { with_feature_available_for_user(:merge_requests, current_user) }
scope :with_merge_requests_enabled, -> { with_feature_enabled(:merge_requests) }
scope :with_remote_mirrors, -> { joins(:remote_mirrors).where(remote_mirrors: { enabled: true }).distinct }
scope :inc_creator, -> { includes(:creator) }
 
scope :with_group_runners_enabled, -> do
joins(:ci_cd_settings)
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