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

module Types
  class CommitActionModeEnum < BaseEnum
    graphql_name 'CommitActionMode'
    description 'Mode of a commit action'

    value 'CREATE', description: 'Create command.', value: :create
    value 'DELETE', description: 'Delete command.', value: :delete
    value 'MOVE', description: 'Move command.', value: :move
    value 'UPDATE', description: 'Update command.', value: :update
    value 'CHMOD', description: 'Chmod command.', value: :chmod
  end
end