Commit f8c65db7 authored by Dmytro Zaporozhets (DZ)'s avatar Dmytro Zaporozhets (DZ)

Merge branch '299489-add-descriptions-to-todo-state-enum' into 'master'

Add descriptions to TodoStateEnum

See merge request gitlab-org/gitlab!54178
parents c0bf7d4d b01d8a44
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
module Types module Types
class TodoStateEnum < BaseEnum class TodoStateEnum < BaseEnum
value 'pending' value 'pending', description: "The state of the todo is pending."
value 'done' value 'done', description: "The state of the todo is done."
end end
end end
...@@ -5773,8 +5773,8 @@ State of a test report. ...@@ -5773,8 +5773,8 @@ State of a test report.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
| `done` | | | `done` | The state of the todo is done. |
| `pending` | | | `pending` | The state of the todo is pending. |
### TodoTargetEnum ### TodoTargetEnum
......
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