Skip to content
Snippets Groups Projects
Commit 7aa0472f authored by Subashis Chakraborty's avatar Subashis Chakraborty
Browse files

Add descriptions to VisibilityLevelsEnum

parent 9a5c22a2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
@@ -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
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment