feat(trello): add trello integration (#1380)

This commit is contained in:
Rıdvan Akca
2023-10-24 16:13:08 +03:00
committed by GitHub
parent 627184f124
commit ee90422f56
15 changed files with 155 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
export default defineApp({
name: 'Trello',
key: 'trello',
baseUrl: 'https://trello.com/',
apiBaseUrl: 'https://api.trello.com',
iconUrl: '{BASE_URL}/apps/trello/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/trello/connection',
supportsConnections: true,
primaryColor: '0079bf',
beforeRequest: [addAuthHeader],
auth,
});