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 @@
module Types
class TodoStateEnum < BaseEnum
value 'pending'
value 'done'
value 'pending', description: "The state of the todo is pending."
value 'done', description: "The state of the todo is done."
end
end
......@@ -5773,8 +5773,8 @@ State of a test report.
| Value | Description |
| ----- | ----------- |
| `done` | |
| `pending` | |
| `done` | The state of the todo is done. |
| `pending` | The state of the todo is pending. |
### 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