Skip to content

Instantly share code, notes, and snippets.

@MacRusher
Created June 14, 2017 15:56
Show Gist options
  • Save MacRusher/04b7f072398137e8304e13deb2b78079 to your computer and use it in GitHub Desktop.
Save MacRusher/04b7f072398137e8304e13deb2b78079 to your computer and use it in GitHub Desktop.
Snippets for uniforms blog post
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