diff --git a/app/components/Sidebar/Settings.js b/app/components/Sidebar/Settings.js index a5b9d6fe..bfcd414c 100644 --- a/app/components/Sidebar/Settings.js +++ b/app/components/Sidebar/Settings.js @@ -73,20 +73,23 @@ class SettingsSidebar extends React.Component { }> Share Links - {user.isAdmin && ( - } - > - Integrations - - )} {user.isAdmin && ( }> Export Data )} + {user.isAdmin && ( +
+
Integrations
+ + Slack + + + Zapier + +
+ )} diff --git a/app/routes.js b/app/routes.js index b9ea0584..7580efdf 100644 --- a/app/routes.js +++ b/app/routes.js @@ -14,6 +14,7 @@ import Details from 'scenes/Settings/Details'; import Security from 'scenes/Settings/Security'; import People from 'scenes/Settings/People'; import Slack from 'scenes/Settings/Slack'; +import Zapier from 'scenes/Settings/Zapier'; import Shares from 'scenes/Settings/Shares'; import Tokens from 'scenes/Settings/Tokens'; import Export from 'scenes/Settings/Export'; @@ -53,6 +54,11 @@ export default function Routes() { path="/settings/integrations/slack" component={Slack} /> + diff --git a/app/scenes/Settings/Zapier.js b/app/scenes/Settings/Zapier.js new file mode 100644 index 00000000..a0c7b5ed --- /dev/null +++ b/app/scenes/Settings/Zapier.js @@ -0,0 +1,19 @@ +// @flow +import * as React from 'react'; +import CenteredContent from 'components/CenteredContent'; +import PageTitle from 'components/PageTitle'; +import HelpText from 'components/HelpText'; + +class Zapier extends React.Component<*> { + render() { + return ( + + +

Zapier

+ Boop +
+ ); + } +} + +export default Zapier;