Updated stuff
This commit is contained in:
parent
734654988f
commit
a28cbf962d
|
@ -0,0 +1,10 @@
|
||||||
|
module.exports = {
|
||||||
|
meilisearch: {
|
||||||
|
config: {
|
||||||
|
"weapon-story": {
|
||||||
|
indexName: "nested-weapon-story",
|
||||||
|
populateEntryRule: ["stories.translations", "translations"],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -10,10 +10,10 @@
|
||||||
"strapi": "strapi"
|
"strapi": "strapi"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@strapi/plugin-graphql": "4.1.11",
|
"@strapi/plugin-graphql": "4.1.12",
|
||||||
"@strapi/strapi": "4.1.11",
|
"@strapi/strapi": "4.1.12",
|
||||||
"sqlite3": "5.0.8",
|
"sqlite3": "5.0.8",
|
||||||
"strapi-plugin-meilisearch": "^0.6.4"
|
"strapi-plugin-meilisearch": "0.6.5"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "A Strapi developer"
|
"name": "A Strapi developer"
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
tar -czvf backups/db_backup$(date +"%Y-%m-%d-%h-%M-%s").tar.gz .tmp/data.db
|
tar -czvf backups/db_backup$(date +"%Y-%m-%d-%h-%M-%s").tar.gz .tmp/data.db
|
||||||
|
npx strapi build
|
||||||
npm run develop
|
npm run develop
|
||||||
|
|
|
@ -40,6 +40,12 @@
|
||||||
"type": "component",
|
"type": "component",
|
||||||
"repeatable": true,
|
"repeatable": true,
|
||||||
"component": "collections-component.event"
|
"component": "collections-component.event"
|
||||||
|
},
|
||||||
|
"wiki_pages": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "manyToMany",
|
||||||
|
"target": "api::wiki-page.wiki-page",
|
||||||
|
"mappedBy": "chronology_items"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,12 @@
|
||||||
"relation": "manyToOne",
|
"relation": "manyToOne",
|
||||||
"target": "api::weapon-story-group.weapon-story-group",
|
"target": "api::weapon-story-group.weapon-story-group",
|
||||||
"inversedBy": "weapons"
|
"inversedBy": "weapons"
|
||||||
|
},
|
||||||
|
"wiki_page": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "oneToOne",
|
||||||
|
"target": "api::wiki-page.wiki-page",
|
||||||
|
"mappedBy": "weapon"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -441,6 +441,30 @@
|
||||||
},
|
},
|
||||||
"search_title": {
|
"search_title": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"want_it": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"have_it": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reset_all_filters": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"only_display_items_i_have": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"only_display_items_i_want": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"only_display_unmarked_items": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"display_all_items": {
|
||||||
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,14 +25,6 @@
|
||||||
"images"
|
"images"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"Aspects": {
|
|
||||||
"type": "dynamiczone",
|
|
||||||
"components": [
|
|
||||||
"wiki-specialization.chronology",
|
|
||||||
"wiki-specialization.glossary-item",
|
|
||||||
"wiki-specialization.weapon"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"categories": {
|
"categories": {
|
||||||
"type": "relation",
|
"type": "relation",
|
||||||
"relation": "oneToMany",
|
"relation": "oneToMany",
|
||||||
|
@ -43,6 +35,23 @@
|
||||||
"type": "component",
|
"type": "component",
|
||||||
"repeatable": true,
|
"repeatable": true,
|
||||||
"component": "translations.wiki"
|
"component": "translations.wiki"
|
||||||
|
},
|
||||||
|
"chronology_items": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "manyToMany",
|
||||||
|
"target": "api::chronology-item.chronology-item",
|
||||||
|
"inversedBy": "wiki_pages"
|
||||||
|
},
|
||||||
|
"weapon": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "oneToOne",
|
||||||
|
"target": "api::weapon-story.weapon-story",
|
||||||
|
"inversedBy": "wiki_page"
|
||||||
|
},
|
||||||
|
"definitions": {
|
||||||
|
"type": "component",
|
||||||
|
"repeatable": true,
|
||||||
|
"component": "wiki-specialization.glossary-item"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,8 @@
|
||||||
"required": true
|
"required": true
|
||||||
},
|
},
|
||||||
"body": {
|
"body": {
|
||||||
"type": "richtext"
|
"type": "richtext",
|
||||||
|
"required": true
|
||||||
},
|
},
|
||||||
"authors": {
|
"authors": {
|
||||||
"type": "relation",
|
"type": "relation",
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"collectionName": "components_collections_component_definitions",
|
||||||
|
"info": {
|
||||||
|
"displayName": "Definition",
|
||||||
|
"icon": "atlas"
|
||||||
|
},
|
||||||
|
"options": {},
|
||||||
|
"attributes": {
|
||||||
|
"source": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "oneToOne",
|
||||||
|
"target": "api::source.source"
|
||||||
|
},
|
||||||
|
"definition": {
|
||||||
|
"type": "richtext",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
"source_language": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "oneToOne",
|
||||||
|
"target": "api::language.language"
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"type": "enumeration",
|
||||||
|
"enum": [
|
||||||
|
"Incomplete",
|
||||||
|
"Draft",
|
||||||
|
"Review",
|
||||||
|
"Done"
|
||||||
|
],
|
||||||
|
"default": "Incomplete",
|
||||||
|
"required": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -25,6 +25,11 @@
|
||||||
],
|
],
|
||||||
"default": "Incomplete",
|
"default": "Incomplete",
|
||||||
"required": true
|
"required": true
|
||||||
|
},
|
||||||
|
"source_language": {
|
||||||
|
"type": "relation",
|
||||||
|
"relation": "oneToOne",
|
||||||
|
"target": "api::language.language"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue