summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/status_action_type.rb
blob: 08cbb6d3b59485a107be8cff396efa8709af06b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true
module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    class StatusActionType < BaseObject
      graphql_name 'StatusAction'

      field :button_title, GraphQL::STRING_TYPE, null: true,
            description: 'Title for the button, for example: Retry this job'
      field :icon, GraphQL::STRING_TYPE, null: true,
            description: 'Icon used in the action button'
      field :method, GraphQL::STRING_TYPE, null: true,
            description: 'Method for the action, for example: :post',
            resolver_method: :action_method
      field :path, GraphQL::STRING_TYPE, null: true,
            description: 'Path for the action'
      field :title, GraphQL::STRING_TYPE, null: true,
            description: 'Title for the action, for example: Retry'

      def action_method
        object[:method]
      end
    end
  end
end