- Description:
This key defines the Collection for files created using an option in the + Add button dropdown.
This Collections overrides the current Collection open in the Collection browser.
The value for this key should be the key name of a Collection.
By default, this key is the current Collection open in the Collection browser.
- Appears in:
└── collections_config └── * └── add_options └── [*] └── Add Option └── collection- Type:
string- Examples:
In this example, we want team members in the articles Collection to create new files in the
new_articlesCollection rather than the current Collection browser they have open. By configuring thecollectionvalue tonew_articles, new files will be created in a different Collection (i.e.,new_articles) when a team member selects this option from the + Add button dropdown.Copied to clipboardcollections_config: articles: add_options: - name: Add articles collection: new_articles schema: articles{ "collections_config": { "articles": { "add_options": [ { "name": "Add articles", "collection": "new_articles", "schema": "articles" } ] } } }