Skip to content

Commit

Permalink
[service] Admin can submit abstracts
Browse files Browse the repository at this point in the history
  • Loading branch information
cgars committed Aug 8, 2017
1 parent a2620a5 commit e2f472b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/models/AbstractState.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ object AbstractState extends Enumeration {
InRevision -> (Submitted :: Nil)),
"isClosed" -> Map(InRevision -> (Submitted :: Nil)))

val adminStates = Map(Submitted -> (InReview :: Nil),
val adminStates = Map(InPreparation -> (Submitted :: Nil),
Submitted -> (InReview :: Nil),
InReview -> (Accepted :: Rejected :: InRevision :: Withdrawn :: Nil),
Accepted -> (InRevision :: Withdrawn :: Nil),
Rejected -> (InRevision :: Withdrawn :: Nil),
Expand Down

0 comments on commit e2f472b

Please sign in to comment.