Skip to content

Commit 94a9550

Browse files
committed
some adjusts
1 parent 711b771 commit 94a9550

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

components/ignisign/actions/create-signature-request/create-signature-request.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export default {
4848
type: "string",
4949
label: "Title",
5050
description: "The title of the signature request.",
51-
optional: true,
5251
},
5352
description: {
5453
type: "string",

components/ignisign/actions/create-signer/create-signer.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ export default {
88
type: "action",
99
props: {
1010
ignisign,
11-
signatureProfileId: {
11+
signerProfileId: {
1212
propDefinition: [
1313
ignisign,
14-
"signatureProfileId",
14+
"signerProfileId",
1515
],
1616
optional: true,
1717
},
@@ -41,7 +41,6 @@ export default {
4141
ignisign,
4242
"email",
4343
],
44-
optional: true,
4544
},
4645
phoneNumber: {
4746
propDefinition: [

components/ignisign/ignisign.app.mjs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default {
6464
},
6565
});
6666

67-
return signatureRequests.map(({
67+
return signatureRequests.filter(({ status }) => status === "COMPLETED").map(({
6868
_id: value, title: label,
6969
}) => ({
7070
label,
@@ -139,16 +139,6 @@ export default {
139139
label: "Birth Country",
140140
description: "The country of birth of the signer in ISO 3166-1 alpha-2",
141141
},
142-
/* documentid: {
143-
type: "string",
144-
label: "Document ID",
145-
description: "The unique identifier for the document to be signed",
146-
},
147-
signrequestid: {
148-
type: "string",
149-
label: "Sign Request ID",
150-
description: "The identifier of the signature request you want to get the proof for",
151-
}, */
152142
},
153143
methods: {
154144
_baseUrl(envs = `/applications/${this.$auth.app_id}/envs/${this.$auth.app_env}`) {

0 commit comments

Comments
 (0)