Commit 1d0e6ba3 authored by Jonathan Schafer's avatar Jonathan Schafer Committed by Heinrich Lee Yu

Add descriptions for BlobActionEnum

parent 4596c5ee
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
# WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/322903 # WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/322903
Graphql/Descriptions: Graphql/Descriptions:
Exclude: Exclude:
- 'app/graphql/types/snippets/blob_action_enum.rb'
- 'ee/app/graphql/ee/types/list_limit_metric_enum.rb' - 'ee/app/graphql/ee/types/list_limit_metric_enum.rb'
- 'ee/app/graphql/types/epic_state_enum.rb' - 'ee/app/graphql/types/epic_state_enum.rb'
- 'ee/app/graphql/types/health_status_enum.rb' - 'ee/app/graphql/types/health_status_enum.rb'
......
...@@ -6,10 +6,10 @@ module Types ...@@ -6,10 +6,10 @@ module Types
graphql_name 'SnippetBlobActionEnum' graphql_name 'SnippetBlobActionEnum'
description 'Type of a snippet blob input action' description 'Type of a snippet blob input action'
value 'create', value: :create value 'create', description: 'Create a snippet blob.', value: :create
value 'update', value: :update value 'update', description: 'Update a snippet blob.', value: :update
value 'delete', value: :delete value 'delete', description: 'Delete a snippet blob.', value: :delete
value 'move', value: :move value 'move', description: 'Move a snippet blob.', value: :move
end end
end end
end end
...@@ -14602,10 +14602,10 @@ Type of a snippet blob input action. ...@@ -14602,10 +14602,10 @@ Type of a snippet blob input action.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
| <a id="snippetblobactionenumcreate"></a>`create` | | | <a id="snippetblobactionenumcreate"></a>`create` | Create a snippet blob. |
| <a id="snippetblobactionenumdelete"></a>`delete` | | | <a id="snippetblobactionenumdelete"></a>`delete` | Delete a snippet blob. |
| <a id="snippetblobactionenummove"></a>`move` | | | <a id="snippetblobactionenummove"></a>`move` | Move a snippet blob. |
| <a id="snippetblobactionenumupdate"></a>`update` | | | <a id="snippetblobactionenumupdate"></a>`update` | Update a snippet blob. |
### `Sort` ### `Sort`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment