mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
38 lines
No EOL
540 B
JavaScript
38 lines
No EOL
540 B
JavaScript
addToPostSchema.push(
|
|
{
|
|
propertyName: 'dummySlug',
|
|
propertySchema: {
|
|
type: String,
|
|
optional: true,
|
|
autoform: {
|
|
omit: true
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
addToPostSchema.push(
|
|
{
|
|
propertyName: 'isDummy',
|
|
propertySchema: {
|
|
type: Boolean,
|
|
optional: true,
|
|
autoform: {
|
|
omit: true
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
addToCommentsSchema.push(
|
|
{
|
|
propertyName: 'isDummy',
|
|
propertySchema: {
|
|
type: Boolean,
|
|
optional: true,
|
|
autoform: {
|
|
omit: true
|
|
}
|
|
}
|
|
}
|
|
); |