gitlab-org--gitlab-foss/app/graphql/types/event_action_enum.rb

13 lines
305 B
Ruby

# frozen_string_literal: true
module Types
class EventActionEnum < BaseEnum
graphql_name 'EventAction'
description 'Event action'
::Event.actions.keys.each do |target_type|
value target_type.upcase, value: target_type, description: "#{target_type.titleize} action"
end
end
end