Fixed determining if it's a numeric TAN
This commit is contained in:
parent
1b2b960c1b
commit
6aa7694ed6
|
@ -22,8 +22,8 @@ open class TanMethod(
|
|||
internal constructor() : this("", TanMethodType.EnterTan, "") // for object deserializers
|
||||
|
||||
|
||||
@Transient
|
||||
open val isNumericTan: Boolean = allowedTanFormat == AllowedTanFormat.Numeric
|
||||
open val isNumericTan: Boolean
|
||||
get() = allowedTanFormat == AllowedTanFormat.Numeric
|
||||
|
||||
|
||||
open var technicalId: String = UUID.random()
|
||||
|
|
Loading…
Reference in New Issue