Add board feature

This commit is contained in:
julien vdb
2025-03-28 14:52:43 +01:00
parent 9d4ecb2733
commit c6d5936639
23 changed files with 3485 additions and 11 deletions

View File

@@ -88,6 +88,24 @@
"nbSaved": {
"type": "integer",
"default": 0
},
"choralOwner": {
"type": "relation",
"relation": "oneToOne",
"target": "api::choral.choral",
"mappedBy": "owner"
},
"choralAdmin": {
"type": "relation",
"relation": "manyToMany",
"target": "api::choral.choral",
"mappedBy": "admins"
},
"chorals": {
"type": "relation",
"relation": "manyToMany",
"target": "api::choral.choral",
"mappedBy": "users"
}
}
}