s3: use internal upload object url for uploading files

This commit is contained in:
Abdullah Atta
2025-10-09 14:16:59 +05:00
parent 1ecd8adee1
commit 131df3df04
3 changed files with 7 additions and 1 deletions

View File

@@ -160,6 +160,11 @@ namespace Notesnook.API.Services
return this.GetPresignedURL(userId, name, HttpVerb.PUT);
}
public string? GetInternalUploadObjectUrl(string userId, string name)
{
return this.GetPresignedURL(userId, name, HttpVerb.PUT, S3ClientMode.INTERNAL);
}
public async Task<string?> GetDownloadObjectUrl(string userId, string name)
{
// var subscriptionService = await WampServers.SubscriptionServer.GetServiceAsync<IUserSubscriptionService>(SubscriptionServerTopics.UserSubscriptionServiceTopic);