Hackspace: add cams

This commit is contained in:
He4eT 2025-04-01 10:43:03 +02:00
commit b9293904a9
2 changed files with 21 additions and 0 deletions

View file

@ -42,6 +42,11 @@
"type": "component", "type": "component",
"repeatable": false, "repeatable": false,
"component": "hackspace.spacefed" "component": "hackspace.spacefed"
},
"cam": {
"type": "component",
"repeatable": true,
"component": "hackspace.camera"
} }
} }
} }

View file

@ -0,0 +1,16 @@
{
"collectionName": "components_hackspace_cameras",
"info": {
"displayName": "Camera",
"icon": "eye",
"description": ""
},
"options": {},
"attributes": {
"url": {
"type": "string",
"required": true,
"unique": true
}
}
}