summaryrefslogtreecommitdiff
path: root/app/graphql/types/subscription_type.rb
blob: f7f26ba4c5aa8e652a70f771bd58a51bedf98afa (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

module Types
  class SubscriptionType < ::Types::BaseObject
    graphql_name 'Subscription'

    field :issuable_assignees_updated, subscription: Subscriptions::IssuableUpdated, null: true,
                                       description: 'Triggered when the assignees of an issuable are updated.'

    field :issue_crm_contacts_updated, subscription: Subscriptions::IssuableUpdated, null: true,
                                       description: 'Triggered when the crm contacts of an issuable are updated.'

    field :issuable_title_updated, subscription: Subscriptions::IssuableUpdated, null: true,
                                   description: 'Triggered when the title of an issuable is updated.'

    field :issuable_description_updated, subscription: Subscriptions::IssuableUpdated, null: true,
                                         description: 'Triggered when the description of an issuable is updated.'

    field :issuable_labels_updated, subscription: Subscriptions::IssuableUpdated, null: true,
                                    description: 'Triggered when the labels of an issuable are updated.'

    field :issuable_dates_updated, subscription: Subscriptions::IssuableUpdated, null: true,
                                   description: 'Triggered when the due date or start date of an issuable is updated.'

    field :issuable_milestone_updated, subscription: Subscriptions::IssuableUpdated, null: true,
                                       description: 'Triggered when the milestone of an issuable is updated.'

    field :merge_request_reviewers_updated,
          subscription: Subscriptions::IssuableUpdated,
          null: true,
          description: 'Triggered when the reviewers of a merge request are updated.'

    field :merge_request_merge_status_updated,
          subscription: Subscriptions::IssuableUpdated,
          null: true,
          description: 'Triggered when the merge status of a merge request is updated.'

    field :merge_request_approval_state_updated,
          subscription: Subscriptions::IssuableUpdated,
          null: true,
          description: 'Triggered when approval state of a merge request is updated.'
  end
end

Types::SubscriptionType.prepend_mod