feat(ghost): add ghost integration (#1401)

This commit is contained in:
Rıdvan Akca
2023-11-07 13:30:26 +03:00
committed by GitHub
parent c42374e031
commit f0e8f070a8
11 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import setBaseUrl from './common/set-base-url';
import auth from './auth';
export default defineApp({
name: 'Ghost',
key: 'ghost',
baseUrl: 'https://ghost.org',
apiBaseUrl: '',
iconUrl: '{BASE_URL}/apps/ghost/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/ghost/connection',
primaryColor: '15171A',
supportsConnections: true,
beforeRequest: [setBaseUrl, addAuthHeader],
auth,
});