Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/commit_action_mode_enum.rb')
-rw-r--r--app/graphql/types/commit_action_mode_enum.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/graphql/types/commit_action_mode_enum.rb b/app/graphql/types/commit_action_mode_enum.rb
index 77658a85b51..ea3d49c9822 100644
--- a/app/graphql/types/commit_action_mode_enum.rb
+++ b/app/graphql/types/commit_action_mode_enum.rb
@@ -5,10 +5,10 @@ module Types
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
+ 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