@nzz/q-server
Version:
**Maintainer**: [Franco Gervasi](https://github.com/fgervasi)
43 lines (42 loc) • 741 B
JavaScript
module.exports = [
{
_id: "mock-item-inactive",
tool: "tool1",
title: "title",
foo: "bar",
editedBy: "username",
createdBy: "username",
department: "Storytelling",
data: {
foo: "bar"
},
active: false
},
{
_id: "mock-item-active",
title: "title",
tool: "tool1",
foo: "bar",
dynamicDisplayOptionsSchema: {
hideTitle: {
title: "Titel ausblenden",
type: "boolean"
}
},
active: true
},
{
_id: "mock-item-to-test-edits",
title: "title",
tool: "tool1",
foo: "bar",
active: false
},
{
_id: "mock-item-from-wrong-configured-tool",
title: "title",
tool: "tool2",
foo: "bar",
active: true
}
];