Vulcan/packages/telescope-getting-started/lib/getting_started.js
Sacha Greif 50fc3eb11a Merge branch 'namespace' of https://github.com/TelescopeJS/Telescope into namespace
# Conflicts:
#	lib/users.js
#	packages/telescope-base/lib/base.js
#	packages/telescope-base/package.js
#	packages/telescope-lib
2015-04-20 13:57:37 +09:00

38 lines
535 B
JavaScript

Posts.addToSchema(
{
propertyName: 'dummySlug',
propertySchema: {
type: String,
optional: true,
autoform: {
omit: true
}
}
}
);
Posts.addToSchema(
{
propertyName: 'isDummy',
propertySchema: {
type: Boolean,
optional: true,
autoform: {
omit: true
}
}
}
);
addToCommentsSchema.push(
{
propertyName: 'isDummy',
propertySchema: {
type: Boolean,
optional: true,
autoform: {
omit: true
}
}
}
);