Add archive media apis.

This commit is contained in:
Cody Henthorne
2024-03-05 11:00:29 -05:00
committed by Alex Hart
parent ccc9752485
commit 218964cbda
18 changed files with 785 additions and 62 deletions

View File

@@ -55,7 +55,8 @@ object FakeMessageRecords {
audioHash: AudioHash? = null,
transformProperties: AttachmentTable.TransformProperties? = null,
displayOrder: Int = 0,
uploadTimestamp: Long = 200
uploadTimestamp: Long = 200,
dataHash: String? = null
): DatabaseAttachment {
return DatabaseAttachment(
attachmentId,
@@ -85,7 +86,8 @@ object FakeMessageRecords {
audioHash,
transformProperties,
displayOrder,
uploadTimestamp
uploadTimestamp,
dataHash
)
}