Skip to content

Commit

Permalink
Added cancelled as a request status
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvdlinde committed Jan 13, 2020
1 parent 338137e commit c4f0537
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/Entity/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ class Request
* "type"="string",
* "example"="incomplete",
* "maxLength"="255",
* "enum"={"incomplete", "complete", "submitted", "processed"},
* "enum"={"incomplete", "complete", "submitted", "processed","cancelled"},
* "default"="incomplete"
* }
* }
* )
*
* @Assert\Choice({"incomplete", "complete", "submitted", "processed"})
* @Assert\Choice({"incomplete", "complete", "submitted", "processed","cancelled"})
* @Assert\Length(
* max = 255
* )
Expand Down

0 comments on commit c4f0537

Please sign in to comment.