What are "assets/documents" mentioned in documentation?
I'm setting up Azure Blob Storage, and mapping the various storage paths to either my Blob Storage's production container, or a "usercontent" container for any content that a user may upload via bizformfiles.
/assets/media are obviously Media Files
/assets/contentitems are obviously Content Item Assets
/assets/bizformfiles are obviously Biz Form Uploaded Files
/assets/documents are...???
Just need to know what container i should map them to, or what they are for...any hints? It's in the below mentioned documentation in the code block:
if (Environment.IsQa() || Environment.IsUat() || Environment.IsProduction())
{
MapAzureStoragePath("/assets/media", CONTAINER_NAME_LIBRARIES);
MapAzureStoragePath("/assets/contentitems", CONTAINER_NAME_CONTENT_ITEM_ASSETS);
MapAzureStoragePath("/assets/bizformfiles", CONTAINER_NAME_FORM_FILES);
MapAzureStoragePath("/assets/documents", CONTAINER_NAME_DOCUMENTS);
}
Environment
- Xperience by Kentico version: 30.3.1
- .NET version: 8
- Execution environment: Local
- https://docs.kentico.com/developers-and-admins/api/files-api-and-cms-io/file-system-providers/azure-blob-storage#map-folders-to-a-kentico-managed-azure-blob-storage
Answers
I think you read too fast. It's right there in the docs. It's just an example.
// NOTE: The "documents" folder is an example folder with arbitrary document files
The Kentico Community Portal uses a custom folder to store member uploaded assets (only avatars so far).
To answer this question, you have to login first.