summaryrefslogtreecommitdiff
path: root/app/graphql/types/commit_action_mode_enum.rb
blob: 77658a85b513945231301d3e4f3890f0cdc8d376 (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