Created
June 14, 2017 15:56
-
-
Save MacRusher/04b7f072398137e8304e13deb2b78079 to your computer and use it in GitHub Desktop.
Snippets for uniforms blog post
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
import {SimpleSchema} from 'meteor/aldeed:simple-schema'; | |
export const BlogPostSchema = new SimpleSchema({ | |
title: { | |
type: String, | |
}, | |
authorName: { | |
type: String, | |
optional: true, | |
}, | |
content: { | |
type: String, | |
min: 10 | |
}, | |
status: { | |
type: String, | |
allowedValues: ['draft', 'published'], | |
defaultValue: 'draft' | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment