mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-16 15:57:22 +00:00

Enable frozen string in app/graphql + app/finders See merge request gitlab-org/gitlab-ce!21681
11 lines
379 B
Ruby
11 lines
379 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ForkProjectsFinder < ProjectsFinder
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def initialize(project, params: {}, current_user: nil)
|
|
project_ids = project.forks.includes(:creator).select(:id)
|
|
super(params: params, current_user: current_user, project_ids_relation: project_ids)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|