summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/concerns/mutations/finds_project.rb
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