debian-mirror-gitlab/app/graphql/types/ci/pipeline_message_type.rb

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

17 lines
426 B
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
module Types
module Ci
# rubocop: disable Graphql/AuthorizeTypes
class PipelineMessageType < BaseObject
graphql_name 'PipelineMessage'
field :id, GraphQL::Types::ID, null: false,
description: 'ID of the pipeline message.'
field :content, GraphQL::Types::String, null: false,
description: 'Content of the pipeline message.'
end
end
end