fix has_password

This commit is contained in:
Hafiz 2022-07-17 06:44:54 -04:00 committed by Phillip Thelen
parent 798fa1a330
commit 6a3747219a

View file

@ -9,6 +9,6 @@ import io.realm.annotations.RealmClass
open class LocalAuthentication : RealmObject(), BaseObject {
var username: String? = null
var email: String? = null
@SerializedName("local")
@SerializedName("has_password")
var hasPassword: Boolean? = false
}