Vulcan/packages/telescope-getting-started/lib/getting_started.js

39 lines
537 B
JavaScript
Raw Normal View History

2015-04-24 09:28:50 +09:00
Posts.registerField(
{
propertyName: 'dummySlug',
propertySchema: {
type: String,
optional: true,
autoform: {
omit: true
}
}
}
);
2015-04-24 09:28:50 +09:00
Posts.registerField(
{
propertyName: 'isDummy',
propertySchema: {
type: Boolean,
optional: true,
autoform: {
omit: true
}
}
}
);
2015-04-24 09:28:50 +09:00
Comments.registerField(
{
propertyName: 'isDummy',
propertySchema: {
type: Boolean,
optional: true,
autoform: {
omit: true
}
}
}
);