Commit 7aa0472f authored by Subashis's avatar Subashis

Add descriptions to VisibilityLevelsEnum

parent 9a5c22a2
......@@ -3,7 +3,7 @@
module Types
class VisibilityLevelsEnum < BaseEnum
Gitlab::VisibilityLevel.string_options.each do |name, int_value|
value name.downcase, value: int_value
value name.downcase, value: int_value, description: "#{name.titleize} visibility level."
end
end
end
......@@ -5664,9 +5664,9 @@ Possible states of a user.
| Value | Description |
| ----- | ----------- |
| `internal` | |
| `private` | |
| `public` | |
| `internal` | Internal visibility level. |
| `private` | Private visibility level. |
| `public` | Public visibility level. |
### VisibilityScopesEnum
......
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