fix: update links for integrations (#2659)

This commit is contained in:
Johannes
2024-05-20 16:45:41 +02:00
committed by GitHub
parent 10aed2d9d8
commit aa890affc9
11 changed files with 20 additions and 14 deletions

View File

@@ -24,8 +24,7 @@ export const metadata = {
The Airtable integration allows you to automatically send responses to an Airtable of your choice. The Airtable integration allows you to automatically send responses to an Airtable of your choice.
<Note> <Note>
This feature is enabled by default in Formbricks Cloud but needs to be self-configured when running a If you are on a self-hosted instance, you will need to configure this integration separately. Please follow the guides [here](/self-hosting/integrations) to configure them.
self-hosted version of Formbricks.
</Note> </Note>
## Formbricks Cloud ## Formbricks Cloud

View File

@@ -23,7 +23,7 @@ The Google Sheets integration allows you to automatically send responses to a Go
<Note> <Note>
This feature is enabled by default in Formbricks Cloud but needs to be self-configured when running a This feature is enabled by default in Formbricks Cloud but needs to be self-configured when running a
self-hosted version of Formbricks. For self-configuration, see additional setup self-hosted version of Formbricks. For self-configuration, see additional setup
[below](#setup-in-self-hosted-formbricks). below.
</Note> </Note>
## Connect Google Sheets ## Connect Google Sheets

View File

@@ -27,7 +27,7 @@ export const metadata = {
Make is a powerful tool to send information between Formbricks and thousands of apps. Here's how to set it up. Make is a powerful tool to send information between Formbricks and thousands of apps. Here's how to set it up.
<Note> <Note>
### Nail down your survey first ? Any changes in the survey cause additional work in the _Scenario_. It Nailed down your survey?? Any changes in the survey cause additional work in the _Scenario_. It
makes sense to first settle on the survey you want to run and then get to setting up Make. makes sense to first settle on the survey you want to run and then get to setting up Make.
</Note> </Note>

View File

@@ -29,7 +29,7 @@ export const metadata = {
n8n allows you to build flexible workflows focused on deep data integration. And with sharable templates and a user-friendly UI, the less technical people on your team can collaborate on them too. Unlike other tools, complexity is not a limitation. So you can build whatever you want — without stressing over budget. Hook up Formbricks with n8n and you can send your data to 350+ other apps. Here is how to do it. n8n allows you to build flexible workflows focused on deep data integration. And with sharable templates and a user-friendly UI, the less technical people on your team can collaborate on them too. Unlike other tools, complexity is not a limitation. So you can build whatever you want — without stressing over budget. Hook up Formbricks with n8n and you can send your data to 350+ other apps. Here is how to do it.
<Note> <Note>
### Nail down your survey first Any changes in the survey cause additional work in the n8n node. It makes Nail down your survey? Any changes in the survey cause additional work in the n8n node. It makes
sense to first settle on the survey you want to run and then get to setting up n8n. sense to first settle on the survey you want to run and then get to setting up n8n.
</Note> </Note>

View File

@@ -21,8 +21,7 @@ export const metadata = {
The notion integration allows you to automatically send responses to a Notion database of your choice. The notion integration allows you to automatically send responses to a Notion database of your choice.
<Note> <Note>
This feature is enabled by default in Formbricks Cloud but needs to be self-configured when running a If you are on a self-hosted instance, you will need to configure this integration separately. Please follow the guides [here](/self-hosting/integrations) to configure them.
self-hosted version of Formbricks.
</Note> </Note>
## Formbricks Cloud ## Formbricks Cloud

View File

@@ -22,8 +22,7 @@ export const metadata = {
The slack integration allows you to automatically send responses to a Slack channel of your choice. The slack integration allows you to automatically send responses to a Slack channel of your choice.
<Note> <Note>
This feature is enabled by default in Formbricks Cloud but needs to be self-configured when running a If you are on a self-hosted instance, you will need to configure this integration separately. Please follow the guides [here](/self-hosting/integrations) to configure them.
self-hosted version of Formbricks.
</Note> </Note>
## Formbricks Cloud ## Formbricks Cloud

View File

@@ -39,10 +39,10 @@ We have step-by-step guides to configure our third-party integrations with a sel
- [Airtable](#airtable) - [Airtable](#airtable)
- [Google Sheets](#google-sheets) - [Google Sheets](#google-sheets)
- [Notion](#notion) - [Notion](#notion)
- Make: We do not support [Make.com](http://Make.com) for Self-hosted instances yet! Please follow our Cloud guide [here](/integrations#make) - Make: We do not support for self-hosted instances yet.
- [n8n](#n8n) - [n8n](#n8n)
- [Slack](#slack) - [Slack](#slack)
- [Wordpress]: Wordpress setup is similar to steps mentioned in Cloud [here](/integrations#wordpress), just change the API Host to your self-hosted URL. - Wordpress: Wordpress setup is similar to the [Cloud setup](/developer-docs/integrations/wordpress), just change the API Host to your self-hosted URL.
- [Zapier](#zapier) - [Zapier](#zapier)
<Note> <Note>

View File

@@ -3,6 +3,7 @@
import { authorize } from "@/app/(app)/environments/[environmentId]/integrations/airtable/lib/airtable"; import { authorize } from "@/app/(app)/environments/[environmentId]/integrations/airtable/lib/airtable";
import FormbricksLogo from "@/images/logo.svg"; import FormbricksLogo from "@/images/logo.svg";
import Image from "next/image"; import Image from "next/image";
import Link from "next/link";
import { useState } from "react"; import { useState } from "react";
import { Button } from "@formbricks/ui/Button"; import { Button } from "@formbricks/ui/Button";
@@ -41,6 +42,12 @@ export const AirtableConnect = ({ environmentId, enabled, webAppUrl }: AirtableC
{!enabled && ( {!enabled && (
<p className="mb-8 rounded border-slate-200 bg-slate-100 p-3 text-sm"> <p className="mb-8 rounded border-slate-200 bg-slate-100 p-3 text-sm">
Airtable Integration is not configured in your instance of Formbricks. Airtable Integration is not configured in your instance of Formbricks.
<br />
Please follow the{" "}
<Link href="https://formbricks.com/docs/self-hosting/integrations#airtable" className="underline">
docs
</Link>{" "}
to configure it.
</p> </p>
)} )}
<Button variant="darkCTA" loading={isConnecting} onClick={handleGoogleLogin} disabled={!enabled}> <Button variant="darkCTA" loading={isConnecting} onClick={handleGoogleLogin} disabled={!enabled}>

View File

@@ -44,7 +44,9 @@ export const Connect = ({ enabled, environmentId, webAppUrl }: ConnectProps) =>
Google Sheets Integration is not configured in your instance of Formbricks. Google Sheets Integration is not configured in your instance of Formbricks.
<br /> <br />
Please follow the{" "} Please follow the{" "}
<Link href="https://formbricks.com/docs/integrations/google-sheets" className="underline"> <Link
href="https://formbricks.com/docs/self-hosting/integrations#google-sheets"
className="underline">
docs docs
</Link>{" "} </Link>{" "}
to configure it. to configure it.

View File

@@ -54,7 +54,7 @@ export const Connect = ({ enabled, environmentId, webAppUrl }: ConnectProps) =>
Notion Integration is not configured in your instance of Formbricks. Notion Integration is not configured in your instance of Formbricks.
<br /> <br />
Please follow the{" "} Please follow the{" "}
<Link href="https://formbricks.com/docs/integrations/notion" className="underline"> <Link href="https://formbricks.com/docs/self-hosting/integrations#notion" className="underline">
docs docs
</Link>{" "} </Link>{" "}
to configure it. to configure it.

View File

@@ -56,7 +56,7 @@ export const Connect = ({ isEnabled, environmentId, webAppUrl }: ConnectProps) =
Slack Integration is not configured in your instance of Formbricks. Slack Integration is not configured in your instance of Formbricks.
<br /> <br />
Please follow the{" "} Please follow the{" "}
<Link href="https://formbricks.com/docs/integrations/slack" className="underline"> <Link href="https://formbricks.com/docs/self-hosting/integrations#slack" className="underline">
docs docs
</Link>{" "} </Link>{" "}
to configure it. to configure it.