fix(Profile Flow): Marking as ID verified is not reflected in community member (#14269)
fixes #13772
This commit is contained in:
parent
2d20a2e1b7
commit
de74a6ce03
|
@ -221,7 +221,7 @@ proc trustStatus*(self: ContactsDto): TrustStatus =
|
||||||
result = self.trustStatus
|
result = self.trustStatus
|
||||||
|
|
||||||
proc isContactVerified*(self: ContactsDto): bool =
|
proc isContactVerified*(self: ContactsDto): bool =
|
||||||
return self.verificationStatus == VerificationStatus.Verified
|
return self.verificationStatus == VerificationStatus.Verified or self.trustStatus == TrustStatus.Trusted
|
||||||
|
|
||||||
proc isContactUntrustworthy*(self: ContactsDto): bool =
|
proc isContactUntrustworthy*(self: ContactsDto): bool =
|
||||||
return self.trustStatus == TrustStatus.Untrustworthy
|
return self.trustStatus == TrustStatus.Untrustworthy
|
||||||
|
|
Loading…
Reference in New Issue