Skip to content

Commit

Permalink
fix(UploadSessionDB): Add authorEmailToken
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeWeidmann committed Dec 12, 2024
1 parent dbb17b1 commit fabaedf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class UploadSessionDB() : UploadSession, RealmObject {
override var uuid: String = RealmUUID.random().toString()
private var _duration: Int = AppSettingsDB.DEFAULT_VALIDITY_PERIOD.value
override var authorEmail: String = ""
override var authorEmailToken: String? = null
override var password: String = ""
override var message: String = ""
private var _numberOfDownload: Int = AppSettingsDB.DEFAULT_DOWNLOAD_LIMIT.value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ object DummyUpload {
override val uuid: String = "upload1"
override val duration: ValidityPeriod = ValidityPeriod.THIRTY
override val authorEmail: String = ""
override val authorEmailToken: String? = null
override val password: String = ""
override val message: String = ""
override val numberOfDownload: DownloadLimit = DownloadLimit.ONE
Expand Down

0 comments on commit fabaedf

Please sign in to comment.