fix(todoist): Add missing OAuth redirect URL field

This commit is contained in:
Katriel Tsepelevish
2023-01-19 18:03:50 +02:00
committed by Ali BARIN
parent 0870fa7e8f
commit a8ac288f17

View File

@@ -4,6 +4,19 @@ import isStillVerified from './is-still-verified';
export default {
fields: [
{
key: 'oAuthRedirectUrl',
label: 'OAuth Redirect URL',
type: 'string' as const,
required: true,
readOnly: true,
value: '{WEB_APP_URL}/app/todoist/connections/add',
placeholder: null,
description:
'When asked to input an OAuth callback or redirect URL in Todoist OAuth, enter the URL above.',
docUrl: 'https://automatisch.io/docs/todoist#oauth-redirect-url',
clickToCopy: true,
},
{
key: 'screenName',
label: 'Screen Name',
@@ -12,8 +25,7 @@ export default {
readOnly: false,
value: null,
placeholder: null,
description:
'Name your connection (only used for Automatisch UI).',
description: 'Name your connection (only used for Automatisch UI).',
clickToCopy: false,
},
{