-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Done displaying user avatar in conversation page
- Loading branch information
1 parent
7415060
commit 0e8e372
Showing
3 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from storages.backends.azure_storage import AzureStorage | ||
|
||
class AzureMediaStorage(AzureStorage): | ||
account_name = 'eventhubkustorage' # Must be replaced by your <storage_account_name> | ||
account_key = 'Zf8bQc9jHikf73ELHsjlepTBMdwa16AN1ULvkRy5HwjTa0XPu5kgSjalnfsXmemazs0nQjqwY6ILSSf3Nl4bvQ==' # Must be replaced by your <storage_account_key> | ||
azure_container = 'media' | ||
expiration_secs = None | ||
|
||
class AzureStaticStorage(AzureStorage): | ||
account_name = 'eventhubkustorage' # Must be replaced by your storage_account_name | ||
account_key = 'fbdeyqP6hu10lribv4QjybXXf3PJPkjLKIBy4cmSNurf3pwP5mMbUh+BwhbHVR+/3x6BvL8Smbtk5r58OuQSIQ==' # Must be replaced by your <storage_account_key> | ||
azure_container = 'static' | ||
expiration_secs = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters