fix: hard code path

This commit is contained in:
Damien Ostler 2024-02-15 01:34:41 -05:00
parent 77c318c993
commit b53f508ce9

View File

@ -9,9 +9,9 @@ namespace comissions.app.api.Services.Storage
{
private readonly string _storageFolderPath;
public LocalStorageServiceProvider(string storageFolderPath)
public LocalStorageServiceProvider()
{
_storageFolderPath = storageFolderPath;
_storageFolderPath = "/requestbox/";
// Create storage folder if it does not exist
if (!Directory.Exists(_storageFolderPath))