File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed
apps/webapp/app/components/integrations Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import { ConnectToOAuthForm } from "./ConnectToOAuthForm";
7
7
import { Paragraph } from "../primitives/Paragraph" ;
8
8
import { Client } from "~/presenters/IntegrationsPresenter.server" ;
9
9
import { UpdateOAuthForm } from "./UpdateOAuthForm" ;
10
+ import { LinkButton } from "../primitives/Buttons" ;
10
11
11
12
export function SelectOAuthMethod ( {
12
13
integration,
@@ -76,7 +77,7 @@ export function SelectOAuthMethod({
76
77
id = "EXTERNAL"
77
78
value = "EXTERNAL"
78
79
label = "Your users"
79
- description = "We will give you OAuth React components so you can connect as your users."
80
+ description = "Use an external authentication provider or your own user database to provide auth credentails of your users."
80
81
variant = "description"
81
82
/>
82
83
</ RadioGroup >
@@ -108,14 +109,19 @@ export function SelectOAuthMethod({
108
109
)
109
110
) : (
110
111
< >
111
- < Header2 className = "mb-1 mt-4" > User OAuth coming soon </ Header2 >
112
+ < Header2 className = "mb-1 mt-4" > BYO Auth </ Header2 >
112
113
< Paragraph spacing >
113
- End-user OAuth is going to be released soon. If you are interested in being an early
114
- beta tester then please{ " " }
115
- < a href = "mailto:[email protected] " className = "text-indigo-500 underline" >
116
- message us
117
- </ a >
118
- .
114
+ We support external authentication providers through Auth Resolvers. Read the docs to
115
+ learn more:{ " " }
116
+ < LinkButton
117
+ variant = "secondary/small"
118
+ LeadingIcon = { "docs" }
119
+ TrailingIcon = { "external-link" }
120
+ to = "https://trigger.dev/docs/documentation/guides/using-integrations-byo-auth"
121
+ target = "_blank"
122
+ >
123
+ Bring your own Auth
124
+ </ LinkButton >
119
125
</ Paragraph >
120
126
</ >
121
127
) ) }
You can’t perform that action at this time.
0 commit comments