EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
integrations.js
Go to the documentation of this file.
1import integrationSetup from './integrationSetup';
2
3export default {
4 slug: 'integrations',
5 title: 'Integrations',
6 icon: 'extension',
7 summary: 'Connect Slack, Xero, Mailgun, Splashtop per tenant.',
8 image: '/images/docs/dashboard-integrations.png',
9 sections: [
10 {
11 heading: 'Setup',
12 list: [
13 'Enable: Choose a provider and configure credentials',
14 'Per-tenant: Root admins can manage integrations for any tenant'
15 ]
16 },
17 {
18 heading: 'Integration Setup Guides',
19 body: 'Quick links to each part of the integration setup process:',
20 links: integrationSetup.sections
21 .filter(s => s.heading && s.heading !== 'Overview' && s.heading !== 'Tips')
22 .map(s => ({
23 title: s.heading,
24 url: `/docs/integration-setup#${s.heading.toLowerCase().replace(/\s+/g, '-')}`
25 }))
26 }
27 ]
28};