#67 added blob storage service + endpoints for profile picture. WIP

This commit is contained in:
Dominic Villemure
2024-06-23 20:24:15 -04:00
parent 0a9c3ec94c
commit ab88511f22
15 changed files with 338 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
namespace Hutopy.Application.AzureBlobStorage.Constants;
public static class CommonFileNames
{
public static string ProfilePicture = "profilePicture";
}

View File

@@ -0,0 +1,6 @@
namespace Hutopy.Application.AzureBlobStorage.Constants;
public static class ContainerNames
{
public static string Users = "users";
}

View File

@@ -0,0 +1,7 @@
namespace Hutopy.Application.AzureBlobStorage.Constants;
public static class SubDirectoryNames
{
public static string Profile = "profile";
public static string Posts = "posts";
}