1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 17:12:49 -05:00

blob meta data for attachments

This commit is contained in:
Kyle Spearrin
2017-07-10 17:08:50 -04:00
parent c26e679ad9
commit 22f1da8497
4 changed files with 50 additions and 10 deletions

View File

@ -1,6 +1,7 @@
using System;
using System.IO;
using System.Threading.Tasks;
using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
@ -26,7 +27,7 @@ namespace Bit.Core.Services
return Task.FromResult(0);
}
public Task UploadNewAttachmentAsync(Stream stream, Guid cipherId, string attachmentId)
public Task UploadNewAttachmentAsync(Stream stream, Cipher cipher, string attachmentId)
{
return Task.FromResult(0);
}