Commit b01d8a44 authored by Subashis's avatar Subashis

Add descriptions to TodoStateEnum

parent 9a5c22a2
......@@ -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
......@@ -5629,8 +5629,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