File tree Expand file tree Collapse file tree 3 files changed +3
-15
lines changed Expand file tree Collapse file tree 3 files changed +3
-15
lines changed Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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 : [
Original file line number Diff line number Diff 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 } ` ) {
You can’t perform that action at this time.
0 commit comments