feat(jotform): add jotform integration

This commit is contained in:
Rıdvan Akca
2024-02-02 16:27:43 +03:00
committed by Ali BARIN
parent 7ace67f906
commit 42f8e635ed
11 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import verifyCredentials from './verify-credentials.js';
import isStillVerified from './is-still-verified.js';
export default {
fields: [
{
key: 'instanceUrl',
label: 'Jotform instance URL',
type: 'string',
required: false,
readOnly: false,
value: null,
placeholder: 'https://${subdomain}.jotform.com',
description: 'If you have an enterprise plan, you can use your api url.',
clickToCopy: true,
},
{
key: 'apiKey',
label: 'API Key',
type: 'string',
required: true,
readOnly: false,
value: null,
placeholder: null,
description: 'Jotform API key of your account.',
clickToCopy: false,
},
],
verifyCredentials,
isStillVerified,
};