fix: upload folder name
mws-backend / build (push) Successful in 37s
mws-backend / push (push) Successful in 26s
mws-backend / deploy (push) Successful in 13s

This commit is contained in:
2026-09-22 23:17:35 +07:00
parent 9d5e83d3b5
commit 07c3774a88
4 changed files with 13 additions and 10 deletions
@@ -2,7 +2,7 @@ namespace mws.backend.dotnet.application.Documents;
public interface IDocumentContentStore
{
Task<string> UploadAsync(Guid projectId, string fileName, string contentType, Stream body, CancellationToken ct);
Task<string> UploadAsync(string projectName, string fileName, string contentType, Stream body, CancellationToken ct);
Task<Stream> DownloadAsync(string storageKey, CancellationToken ct);
Task DeleteAsync(string storageKey, CancellationToken ct);
}