You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-v2/pages/account/user-settings.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ Pipedream recommends enabling 2FA with your identity provider.
50
50
51
51
### Requiring 2-Factor Authentication
52
52
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.
54
54
55
55
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.
Copy file name to clipboardExpand all lines: docs-v2/pages/apps/apps.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ Pipedream has built-in integrations with more than {process.env.PUBLIC_APPS} app
6
6
7
7
But Pipedream-integrated apps provide a few benefits:
8
8
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/).
11
11
-[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.
12
12
13
13
## Premium Apps
@@ -73,7 +73,7 @@ The vast majority of integrated apps on Pipedream are free to use in your workfl
73
73
74
74
<Callouttype="info">
75
75
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/).
77
77
</Callout>
78
78
79
79
**Check out the full list of integrated apps [here](https://pipedream.com/apps).**
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).
14
14
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.
16
16
17
17
## Supported Apps
18
18
@@ -236,7 +236,7 @@ You can access credentials for any connected account via API, letting you build
236
236
237
237
## Passing external credentials at runtime
238
238
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/).
Copy file name to clipboardExpand all lines: docs-v2/pages/apps/external-auth.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Passing external credentials at runtime is a feature that's available to custome
19
19
2. From your app, retrieve credentials and send them in an HTTP request to the endpoint with the rest of the payload.
20
20
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:
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:
25
25
@@ -42,7 +42,7 @@ You can set [the `pd-nostore` flag](/workflows/building-workflows/triggers/#x-pd
42
42
1. Add a step to your workflow to fetch credentials from your DB or secrets store.
43
43
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:
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:
Copy file name to clipboardExpand all lines: docs-v2/pages/components/contributing/actions-quickstart.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ import Callout from '@/components/Callout'
6
6
7
7
## Overview
8
8
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:
10
10
11
11
- Develop Pipedream components
12
12
- 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
16
16
- Use Pipedream managed auth for a 3rd party app
17
17
18
18
<Callouttype="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.
20
20
</Callout>
21
21
22
22
## Prerequisites
@@ -57,7 +57,7 @@ We recommend that you complete the examples below in order.
57
57
58
58
### hello world!
59
59
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.
61
61
62
62
```javascript
63
63
exportdefault {
@@ -109,7 +109,7 @@ Keep the browser tab open. We'll return to this workflow in the rest of the exam
109
109
110
110
### hello [name]!
111
111
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.
113
113
114
114
```java
115
115
export default {
@@ -340,7 +340,7 @@ export default {
340
340
};
341
341
```
342
342
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:
344
344
345
345
```javascript
346
346
import { Octokit } from"@octokit/rest";
@@ -397,7 +397,7 @@ export default {
397
397
};
398
398
```
399
399
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`).
401
401
402
402
```javascript
403
403
import { Octokit } from"@octokit/rest";
@@ -486,6 +486,6 @@ Select an existing account or connect a new one, and then deploy your workflow a
486
486
487
487
## What's Next?
488
488
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!
490
490
491
491
If you have any questions or feedback, please [reach out](https://pipedream.com/community)!
0 commit comments