summaryrefslogtreecommitdiff
path: root/app/graphql/types/alert_management/domain_filter_enum.rb
blob: 58dbc8bb2cff264735e06276f9d1c8cab446b7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  module AlertManagement
    class DomainFilterEnum < BaseEnum
      graphql_name 'AlertManagementDomainFilter'
      description  'Filters the alerts based on given domain'

      value 'operations', description: 'Alerts for operations domain '
      value 'threat_monitoring', description: 'Alerts for threat monitoring domain'
    end
  end
end