diff --git a/src/api/recorder/content-types/recorder/schema.json b/src/api/recorder/content-types/recorder/schema.json index 8e22344..39bfae2 100644 --- a/src/api/recorder/content-types/recorder/schema.json +++ b/src/api/recorder/content-types/recorder/schema.json @@ -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" } } } diff --git a/src/api/weapon-story-group/content-types/weapon-story-group/schema.json b/src/api/weapon-story-group/content-types/weapon-story-group/schema.json index 1954c05..1c1b3ce 100644 --- a/src/api/weapon-story-group/content-types/weapon-story-group/schema.json +++ b/src/api/weapon-story-group/content-types/weapon-story-group/schema.json @@ -4,7 +4,7 @@ "info": { "singularName": "weapon-story-group", "pluralName": "weapon-story-groups", - "displayName": "🟤 Weapon Story Groups", + "displayName": "🟤 Weapon Groups", "description": "" }, "options": { diff --git a/src/api/weapon-story-type/content-types/weapon-story-type/schema.json b/src/api/weapon-story-type/content-types/weapon-story-type/schema.json index b7621a6..40120d9 100644 --- a/src/api/weapon-story-type/content-types/weapon-story-type/schema.json +++ b/src/api/weapon-story-type/content-types/weapon-story-type/schema.json @@ -4,7 +4,7 @@ "info": { "singularName": "weapon-story-type", "pluralName": "weapon-story-types", - "displayName": "🟤 Weapon Story Types", + "displayName": "🟤 Weapon Types", "description": "" }, "options": { diff --git a/src/api/weapon-story/content-types/weapon-story/schema.json b/src/api/weapon-story/content-types/weapon-story/schema.json index f361a4c..e74ffcc 100644 --- a/src/api/weapon-story/content-types/weapon-story/schema.json +++ b/src/api/weapon-story/content-types/weapon-story/schema.json @@ -4,7 +4,7 @@ "info": { "singularName": "weapon-story", "pluralName": "weapon-stories", - "displayName": "🟤 Weapon Stories", + "displayName": "🟤 Weapons", "description": "" }, "options": { diff --git a/src/components/translations/bio.json b/src/components/translations/bio.json new file mode 100644 index 0000000..7d721ba --- /dev/null +++ b/src/components/translations/bio.json @@ -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" + } + } +} diff --git a/src/components/translations/chronology-era.json b/src/components/translations/chronology-era.json index 457ddcd..fbe9961 100644 --- a/src/components/translations/chronology-era.json +++ b/src/components/translations/chronology-era.json @@ -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" } } }