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

Add descriptions to TodoStateEnum

parent 9a5c22a2
Branches 299489-add-descriptions-to-todo-state-enum
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
@@ -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
 
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