Skip to content

Commit

Permalink
Remove verified link. (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
Happy0 authored Jul 29, 2020
1 parent 07828d3 commit ad6a03c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,4 @@ final case class SignatureProof(
signatureDate: Instant
) {
def serialize: Json = this.asJson

def validationLink: Link =
Link(
"verify signature",
s"/web/default/signature/validate?contractId=${contractId.id}&signature=${signature.toString}"
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ class SignatureFormatter extends Formatter {
.map(proof => {
Success(
List(
FreeText(Text(s"/s/ ${proof.fullName} (")),
proof.validationLink,
FreeText(Text(")"))
FreeText(Text(s"/s/ ${proof.fullName}"))
)
)
})
Expand Down

0 comments on commit ad6a03c

Please sign in to comment.