Skip to content
This repository has been archived by the owner on Feb 8, 2023. It is now read-only.

Commit

Permalink
Add REGISTRATION_CLOSED status to events (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrowe authored and SiAshbery committed Mar 7, 2019
1 parent e4ff18d commit f6285ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/interfaces/event/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const statusValues = {
PRE_RELEASE: { value: 'PRE_RELEASE' },
TICKETS_LIVE: { value: 'TICKETS_LIVE' },
WAITLIST: { value: 'WAITLIST' },
REGISTRATION_CLOSED: { value: 'REGISTRATION_CLOSED' },
LIVE_STREAM: { value: 'LIVE_STREAM' },
EVENT_ENDED: { value: 'EVENT_ENDED' },
};
Expand Down
2 changes: 1 addition & 1 deletion prismic/custom-types/events.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"type" : "Select",
"config" : {
"label" : "Event Status",
"options" : [ "PRE_RELEASE", "TICKETS_LIVE", "WAITLIST", "LIVE_STREAM", "EVENT_ENDED" ],
"options" : [ "PRE_RELEASE", "TICKETS_LIVE", "WAITLIST", "REGISTRATION_CLOSED", "LIVE_STREAM", "EVENT_ENDED" ],
"placeholder" : ""
}
},
Expand Down

0 comments on commit f6285ee

Please sign in to comment.