debian-mirror-gitlab/app/graphql/types/board_type.rb
2020-03-13 15:44:24 +05:30

18 lines
455 B
Ruby

# frozen_string_literal: true
module Types
class BoardType < BaseObject
graphql_name 'Board'
description 'Represents a project or group board'
authorize :read_board
field :id, type: GraphQL::ID_TYPE, null: false,
description: 'ID (global ID) of the board'
field :name, type: GraphQL::STRING_TYPE, null: true,
description: 'Name of the board'
end
end
Types::BoardType.prepend_if_ee('::EE::Types::BoardType')