Commit 3cf22743 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre

Merge branch '299489-over-10-of-graphql-descriptions-are-missing-snippet-type' into 'master'

Add descriptions to Snippets::TypeEnum

See merge request gitlab-org/gitlab!61820
parents 2612a344 c76ec4f0
......@@ -14,7 +14,6 @@
Graphql/Descriptions:
Exclude:
- 'app/graphql/types/snippets/blob_action_enum.rb'
- 'app/graphql/types/snippets/type_enum.rb'
- 'app/graphql/types/snippets/visibility_scopes_enum.rb'
- 'ee/app/graphql/ee/types/list_limit_metric_enum.rb'
- 'ee/app/graphql/types/epic_state_enum.rb'
......
......@@ -3,8 +3,8 @@
module Types
module Snippets
class TypeEnum < BaseEnum
value 'personal', value: 'personal'
value 'project', value: 'project'
value 'personal', description: 'Snippet created independent of any project.', value: 'personal'
value 'project', description: 'Snippet related to a specific project.', value: 'project'
end
end
end
......@@ -14553,8 +14553,8 @@ State of a test report.
| Value | Description |
| ----- | ----------- |
| <a id="typeenumpersonal"></a>`personal` | |
| <a id="typeenumproject"></a>`project` | |
| <a id="typeenumpersonal"></a>`personal` | Snippet created independent of any project. |
| <a id="typeenumproject"></a>`project` | Snippet related to a specific project. |
### `UserCalloutFeatureNameEnum`
......
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