debian-mirror-gitlab/app/graphql/mutations/pages/base.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
262 B
Ruby
Raw Normal View History

2022-08-13 15:12:31 +05:30
# 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