mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00

# Conflicts: # lib/users.js # packages/telescope-base/lib/base.js # packages/telescope-base/package.js # packages/telescope-lib
38 lines
535 B
JavaScript
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
|
|
}
|
|
}
|
|
}
|
|
);
|