Welcome to mirror list, hosted at ThFree Co, Russian Federation.

finds_project.rb « mutations « concerns « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 577f9dc90f827dbdc1506d60e4823206f99a10b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Mutations
  module FindsProject
    private

    def find_object(full_path)
      Project.find_by_full_path(full_path)
    end
  end
end