debian-mirror-gitlab/app/graphql/mutations/pages/base.rb
2022-08-13 15:12:31 +05:30

13 lines
262 B
Ruby

# frozen_string_literal: true
module Mutations
module Pages
class Base < BaseMutation
include FindsProject
argument :project_path, GraphQL::Types::ID,
required: true,
description: 'Full path of the project.'
end
end
end