I want to hide some workspaces from sidebar so i made them hidden. How to export them in fixtures, i tried fixtures = [ {
“doctype”: “Workspace”,
},
]
But this wont work
I want to hide some workspaces from sidebar so i made them hidden. How to export them in fixtures, i tried fixtures = [ {
“doctype”: “Workspace”,
},
]
But this wont work
After hidden workspace you can try this
fixtures = [
{
"doctype": "Workspace",
"filters": [
["name", "=", "Workspace Name"]
]
}
]