SessionData: add the passphrase.
This commit is contained in:
parent
a7c21a8c98
commit
f9c1892f2f
7 changed files with 12 additions and 1 deletions
|
|
@ -24,6 +24,7 @@ import java.util.Date
|
|||
internal fun Session.toSessionData(
|
||||
isTokenValid: Boolean,
|
||||
loginType: LoginType,
|
||||
passphrase: String?,
|
||||
) = SessionData(
|
||||
userId = userId,
|
||||
deviceId = deviceId,
|
||||
|
|
@ -35,4 +36,5 @@ internal fun Session.toSessionData(
|
|||
loginTimestamp = Date(),
|
||||
isTokenValid = isTokenValid,
|
||||
loginType = loginType,
|
||||
passphrase = passphrase,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue