feat(pushover): add pushover integration

This commit is contained in:
Rıdvan Akca
2023-10-18 18:35:33 +03:00
committed by Faruk AYDIN
parent 4fac1ef7c4
commit 98e6dbe141
9 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import verifyCredentials from './verify-credentials';
import isStillVerified from './is-still-verified';
export default {
fields: [
{
key: 'screenName',
label: 'Screen Name',
type: 'string' as const,
required: true,
readOnly: false,
value: null,
placeholder: null,
description:
'Screen name of your connection to be used on Automatisch UI.',
clickToCopy: false,
},
{
key: 'userKey',
label: 'User Key',
type: 'string' as const,
required: true,
readOnly: false,
value: null,
placeholder: null,
description: null,
clickToCopy: false,
},
{
key: 'apiToken',
label: 'API Token',
type: 'string' as const,
required: true,
readOnly: false,
value: null,
placeholder: null,
description: null,
clickToCopy: false,
},
],
verifyCredentials,
isStillVerified,
};