debian-mirror-gitlab/app/graphql/mutations/concerns/mutations/finds_project.rb
2021-03-08 18:12:59 +05:30

11 lines
175 B
Ruby

# frozen_string_literal: true
module Mutations
module FindsProject
private
def find_object(full_path)
Project.find_by_full_path(full_path)
end
end
end