Added bio to recorders and description to chrono eras
This commit is contained in:
parent
95a879e45d
commit
8033ee4867
|
@ -42,6 +42,15 @@
|
||||||
"type": "relation",
|
"type": "relation",
|
||||||
"relation": "oneToMany",
|
"relation": "oneToMany",
|
||||||
"target": "api::language.language"
|
"target": "api::language.language"
|
||||||
|
},
|
||||||
|
"pronouns": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"bio": {
|
||||||
|
"displayName": "bio",
|
||||||
|
"type": "component",
|
||||||
|
"repeatable": true,
|
||||||
|
"component": "translations.bio"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"info": {
|
"info": {
|
||||||
"singularName": "weapon-story-group",
|
"singularName": "weapon-story-group",
|
||||||
"pluralName": "weapon-story-groups",
|
"pluralName": "weapon-story-groups",
|
||||||
"displayName": "🟤 Weapon Story Groups",
|
"displayName": "🟤 Weapon Groups",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"info": {
|
"info": {
|
||||||
"singularName": "weapon-story-type",
|
"singularName": "weapon-story-type",
|
||||||
"pluralName": "weapon-story-types",
|
"pluralName": "weapon-story-types",
|
||||||
"displayName": "🟤 Weapon Story Types",
|
"displayName": "🟤 Weapon Types",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"info": {
|
"info": {
|
||||||
"singularName": "weapon-story",
|
"singularName": "weapon-story",
|
||||||
"pluralName": "weapon-stories",
|
"pluralName": "weapon-stories",
|
||||||
"displayName": "🟤 Weapon Stories",
|
"displayName": "🟤 Weapons",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"collectionName": "components_translations_bios",
|
||||||
|
"info": {
|
||||||
|
"displayName": "bio",
|
||||||
|
"icon": "smile",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
"options": {},
|
||||||
|
"attributes": {
|
||||||
|
"language": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "oneToOne",
|
||||||
|
"target": "api::language.language"
|
||||||
|
},
|
||||||
|
"bio": {
|
||||||
|
"type": "text"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,7 +2,8 @@
|
||||||
"collectionName": "components_translations_chronology_eras",
|
"collectionName": "components_translations_chronology_eras",
|
||||||
"info": {
|
"info": {
|
||||||
"displayName": "Chronology Era",
|
"displayName": "Chronology Era",
|
||||||
"icon": "volume-mute"
|
"icon": "volume-mute",
|
||||||
|
"description": ""
|
||||||
},
|
},
|
||||||
"options": {},
|
"options": {},
|
||||||
"attributes": {
|
"attributes": {
|
||||||
|
@ -13,6 +14,9 @@
|
||||||
"type": "relation",
|
"type": "relation",
|
||||||
"relation": "oneToOne",
|
"relation": "oneToOne",
|
||||||
"target": "api::language.language"
|
"target": "api::language.language"
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"type": "text"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue