What are "assets/documents" mentioned in documentation?

2025/04/01 5:02 PM

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

Answers

2025/04/01 7:06 PM

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.