# LMS-specific media storage
PROFILE_IMAGE_BACKEND = {
    "class": DEFAULT_FILE_STORAGE,
    "options": {
        "location": PROFILE_IMAGE_BACKEND["options"]["location"].lstrip("/"),
        # the following non empty property is necessary in development
        "base_url": "dummyprofileimagebaseurl",
    },
}
