Skip to content

Commit 94954e1

Browse files
Handling in-app docs links
1 parent 37b7d31 commit 94954e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+195
-195
lines changed

docs-v2/pages/account/user-settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Pipedream recommends enabling 2FA with your identity provider.
5050

5151
### Requiring 2-Factor Authentication
5252

53-
Workspaces on the Business plan can [require all workspace members to configure 2FA](/workflows/workspaces/#requiring-two-factor-authentication) in order to log in to Pipedream.
53+
Workspaces on the Business plan can [require all workspace members to configure 2FA](/workspaces/#requiring-two-factor-authentication) in order to log in to Pipedream.
5454

5555
If you are a member of any workspace where 2FA is required, you cannot disable 2FA, but you can still reconfigure it in your [account settings](https://pipedream.com/account/) if necessary.
5656

docs-v2/pages/apps/apps.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Pipedream has built-in integrations with more than {process.env.PUBLIC_APPS} app
66

77
But Pipedream-integrated apps provide a few benefits:
88

9-
- You can [connect the app once](/integrations/connected-accounts/) and [link that connected account to any step of a workflow](/integrations/connected-accounts/#connecting-accounts)
10-
- Pipedream provides [pre-built actions](/workflows/contributing/components/#actions) that wrap common operations for the app. You shouldn't have to write the code to send a message to Slack, or add a new row to a Google Sheet, so actions make that easy. Actions are just code, so you can fork and modify them, or even [publish your own to the Pipedream community](/workflows/contributing/).
9+
- You can [connect the app once](/apps/connected-accounts/) and [link that connected account to any step of a workflow](/apps/connected-accounts/#connecting-accounts)
10+
- Pipedream provides [pre-built actions](/components/contributing/#actions) that wrap common operations for the app. You shouldn't have to write the code to send a message to Slack, or add a new row to a Google Sheet, so actions make that easy. Actions are just code, so you can fork and modify them, or even [publish your own to the Pipedream community](/components/contributing/).
1111
- [You have access to your API keys and access tokens in code steps](/workflows/building-workflows/code/nodejs/auth/), so you can write any code to authorize custom requests to these apps.
1212

1313
## Premium Apps
@@ -73,7 +73,7 @@ The vast majority of integrated apps on Pipedream are free to use in your workfl
7373

7474
<Callout type="info">
7575
Missing an integration?
76-
If we don't have an integration for an app that you'd like to see, please [let us know](https://pipedream.com/support) or [contribute it to the source available Pipedream registry](/workflows/contributing/).
76+
If we don't have an integration for an app that you'd like to see, please [let us know](https://pipedream.com/support) or [contribute it to the source available Pipedream registry](/components/contributing/).
7777
</Callout>
7878

7979
**Check out the full list of integrated apps [here](https://pipedream.com/apps).**

docs-v2/pages/apps/connected-accounts.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pipedream provides native integrations for [{process.env.PUBLIC_APPS}+ APIs](htt
1212

1313
Pipedream handles OAuth for you, ensuring you always have a fresh access token to authorize requests, and [credentials are tightly-secured](/privacy-and-security/#third-party-oauth-grants-api-keys-and-environment-variables).
1414

15-
If you use an existing secrets store, or manage credentials in a database, you can also [pass those to Pipedream at runtime](/integrations/connected-accounts/external-auth/) instead of connecting accounts in the UI.
15+
If you use an existing secrets store, or manage credentials in a database, you can also [pass those to Pipedream at runtime](/apps/connected-accounts/external-auth/) instead of connecting accounts in the UI.
1616

1717
## Supported Apps
1818

@@ -236,7 +236,7 @@ You can access credentials for any connected account via API, letting you build
236236

237237
## Passing external credentials at runtime
238238

239-
If you use a secrets store like [Pipedream Connect](/connect/) or [HashiCorp Vault](https://www.vaultproject.io/), or if you store credentials in a database, you can retrieve these secrets at runtime and pass them to any step. [See the full guide here](/integrations/connected-accounts/external-auth/).
239+
If you use a secrets store like [Pipedream Connect](/connect/) or [HashiCorp Vault](https://www.vaultproject.io/), or if you store credentials in a database, you can retrieve these secrets at runtime and pass them to any step. [See the full guide here](/apps/connected-accounts/external-auth/).
240240

241241
## Connecting to apps with IP restrictions
242242

docs-v2/pages/apps/external-auth.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Passing external credentials at runtime is a feature that's available to custome
1919
2. From your app, retrieve credentials and send them in an HTTP request to the endpoint with the rest of the payload.
2020
3. In the step of your workflow where you'd like to pass these credentials, select the **Use external authentication** option at the bottom-right of the account selector:
2121

22-
![Select "External Auth"](/images/integrations/select-external-auth.png)
22+
![Select "External Auth"](/images/apps/select-external-auth.png)
2323

2424
4. You'll be prompted for all required credentials for the app, often just an `oauth_access_token` or `api_key`. [Find the variable that contains your credentials](/workflows/building-workflows/triggers/#copying-references-to-event-data) and pass them to each field:
2525

@@ -42,7 +42,7 @@ You can set [the `pd-nostore` flag](/workflows/building-workflows/triggers/#x-pd
4242
1. Add a step to your workflow to fetch credentials from your DB or secrets store.
4343
2. In the step of your workflow where you'd like to pass these credentials, select the **Use external authentication** option at the bottom-right of the account selector:
4444

45-
![Select "External Auth"](/images/integrations/select-external-auth.png)
45+
![Select "External Auth"](/images/apps/select-external-auth.png)
4646

4747
3. You'll be prompted for all required credentials for the app, often just an `oauth_access_token` or `api_key`. [Find the variable that contains your credentials](/workflows/building-workflows/triggers/#copying-references-to-event-data) and pass them to each field:
4848

docs-v2/pages/components/contributing/actions-quickstart.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Callout from '@/components/Callout'
66

77
## Overview
88

9-
This document is intended for developers who want to author and edit [Pipedream Actions](/workflows/contributing/components/#actions). After completing this quickstart, you'll understand how to:
9+
This document is intended for developers who want to author and edit [Pipedream Actions](/components/contributing/#actions). After completing this quickstart, you'll understand how to:
1010

1111
- Develop Pipedream components
1212
- Publish private actions and use them in workflows
@@ -16,7 +16,7 @@ This document is intended for developers who want to author and edit [Pipedream
1616
- Use Pipedream managed auth for a 3rd party app
1717

1818
<Callout type="info">
19-
If you previously developed actions using Pipedream's UI, we recommend reviewing our [migration guide](/workflows/contributing/components/migrating/) after completing this quickstart.
19+
If you previously developed actions using Pipedream's UI, we recommend reviewing our [migration guide](/components/contributing/migrating/) after completing this quickstart.
2020
</Callout>
2121

2222
## Prerequisites
@@ -57,7 +57,7 @@ We recommend that you complete the examples below in order.
5757

5858
### hello world!
5959

60-
The following code represents a simple component that can be published as an action ([learn more](/workflows/contributing/components/api/) about the component structure). When used in a workflow, it will export `hello world!` as the return value for the step.
60+
The following code represents a simple component that can be published as an action ([learn more](/components/contributing/api/) about the component structure). When used in a workflow, it will export `hello world!` as the return value for the step.
6161

6262
```javascript
6363
export default {
@@ -109,7 +109,7 @@ Keep the browser tab open. We'll return to this workflow in the rest of the exam
109109

110110
### hello [name]!
111111

112-
Next, let's update the component to capture some user input. First, add a `string` [prop](/workflows/contributing/components/api/#props) called `name` to the component.
112+
Next, let's update the component to capture some user input. First, add a `string` [prop](/components/contributing/api/#props) called `name` to the component.
113113

114114
```java
115115
export default {
@@ -340,7 +340,7 @@ export default {
340340
};
341341
```
342342

343-
Then add an [app prop](/workflows/contributing/components/api/#app-props) to use Pipedream managed auth with this component. For this example, we'll add an app prop for Github:
343+
Then add an [app prop](/components/contributing/api/#app-props) to use Pipedream managed auth with this component. For this example, we'll add an app prop for Github:
344344

345345
```javascript
346346
import { Octokit } from "@octokit/rest";
@@ -397,7 +397,7 @@ export default {
397397
};
398398
```
399399

400-
In order to help users understand what's happening with each action step, we recommend surfacing a brief summary with `$summary` ([read more](/workflows/contributing/components/api/#actions) about exporting data using `$.export`).
400+
In order to help users understand what's happening with each action step, we recommend surfacing a brief summary with `$summary` ([read more](/components/contributing/api/#actions) about exporting data using `$.export`).
401401

402402
```javascript
403403
import { Octokit } from "@octokit/rest";
@@ -486,6 +486,6 @@ Select an existing account or connect a new one, and then deploy your workflow a
486486

487487
## What's Next?
488488

489-
You're ready to start authoring and publishing actions on Pipedream! You can also check out the [detailed component reference](/workflows/contributing/components/api/#component-api) at any time!
489+
You're ready to start authoring and publishing actions on Pipedream! You can also check out the [detailed component reference](/components/contributing/api/#component-api) at any time!
490490

491491
If you have any questions or feedback, please [reach out](https://pipedream.com/community)!

0 commit comments

Comments
 (0)