Created
September 6, 2020 05:15
-
-
Save chmelevskij/3bd5611d9a07c3395db057c3ef7e932c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Status { | |
Open = 'open', | |
InProgress = 'in-progress', | |
Complete = 'complete', | |
} | |
const InputSchema = new SimpleSchema({ | |
status: { | |
type: String, | |
allowedValues: Object.values(Status), | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment