Welcome to mirror list, hosted at ThFree Co, Russian Federation.

saved_reply_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 329f431b10e59400389b0f50b6b81822323de5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Types
  class SavedReplyType < BaseObject
    graphql_name 'SavedReply'

    authorize :read_saved_replies

    field :id, Types::GlobalIDType[::Users::SavedReply],
           null: false,
           description: 'Global ID of the saved reply.'

    field :content, GraphQL::Types::String,
          null: false,
          description: 'Content of the saved reply.'

    field :name, GraphQL::Types::String,
          null: false,
          description: 'Name of the saved reply.'
  end
end