summaryrefslogtreecommitdiff
path: root/app/graphql/types/issuable_subscription_event_enum.rb
blob: 0f56fab8b46568c02bbc283c5a0281270dd012a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  class IssuableSubscriptionEventEnum < BaseEnum
    graphql_name 'IssuableSubscriptionEvent'
    description 'Values for subscribing and unsubscribing from issuables'

    value 'SUBSCRIBE', 'Subscribe to an issuable.', value: 'subscribe'
    value 'UNSUBSCRIBE', 'Unsubscribe from an issuable.', value: 'unsubscribe'
  end
end