feat(asana): add asana integration

This commit is contained in:
Rıdvan Akca
2024-06-04 17:14:44 +02:00
parent 751eb41e72
commit 9d5dac1701
12 changed files with 232 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import defineApp from '../../helpers/define-app.js';
import addAuthHeader from './common/add-auth-header.js';
import auth from './auth/index.js';
export default defineApp({
name: 'Asana',
key: 'asana',
baseUrl: 'https://asana.com',
apiBaseUrl: 'https://app.asana.com/api',
iconUrl: '{BASE_URL}/apps/asana/assets/favicon.svg',
authDocUrl: '{DOCS_URL}/apps/asana/connection',
primaryColor: '690031',
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
});