Added bio to recorders and description to chrono eras

This commit is contained in:
DrMint 2022-02-19 02:08:44 +01:00
parent 95a879e45d
commit 8033ee4867
6 changed files with 36 additions and 4 deletions

View File

@ -42,6 +42,15 @@
"type": "relation",
"relation": "oneToMany",
"target": "api::language.language"
},
"pronouns": {
"type": "string"
},
"bio": {
"displayName": "bio",
"type": "component",
"repeatable": true,
"component": "translations.bio"
}
}
}

View File

@ -4,7 +4,7 @@
"info": {
"singularName": "weapon-story-group",
"pluralName": "weapon-story-groups",
"displayName": "🟤 Weapon Story Groups",
"displayName": "🟤 Weapon Groups",
"description": ""
},
"options": {

View File

@ -4,7 +4,7 @@
"info": {
"singularName": "weapon-story-type",
"pluralName": "weapon-story-types",
"displayName": "🟤 Weapon Story Types",
"displayName": "🟤 Weapon Types",
"description": ""
},
"options": {

View File

@ -4,7 +4,7 @@
"info": {
"singularName": "weapon-story",
"pluralName": "weapon-stories",
"displayName": "🟤 Weapon Stories",
"displayName": "🟤 Weapons",
"description": ""
},
"options": {

View File

@ -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"
}
}
}

View File

@ -2,7 +2,8 @@
"collectionName": "components_translations_chronology_eras",
"info": {
"displayName": "Chronology Era",
"icon": "volume-mute"
"icon": "volume-mute",
"description": ""
},
"options": {},
"attributes": {
@ -13,6 +14,9 @@
"type": "relation",
"relation": "oneToOne",
"target": "api::language.language"
},
"description": {
"type": "text"
}
}
}