File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -140,4 +140,4 @@ NUXT_OAUTH_HEROKU_REDIRECT_URL=
140
140
# Ory
141
141
NUXT_OAUTH_ORY_CLIENT_ID =
142
142
NUXT_OAUTH_ORY_CLIENT_SECRET =
143
- NUXT_OAUTH_ORY_SERVER_URL =
143
+ NUXT_OAUTH_ORY_SDK_URL =
Original file line number Diff line number Diff line change @@ -248,6 +248,12 @@ const providers = computed(() =>
248
248
disabled: Boolean (user .value ?.heroku ),
249
249
icon: ' i-simple-icons-heroku' ,
250
250
},
251
+ {
252
+ label: user .value ?.ory || ' Ory' ,
253
+ to: ' /auth/ory' ,
254
+ disabled: Boolean (user .value ?.ory ),
255
+ icon: ' i-simple-icons-ory' ,
256
+ },
251
257
].map (p => ({
252
258
... p ,
253
259
prefetch: false ,
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ declare module '#auth-utils' {
43
43
salesforce ?: string
44
44
slack ?: string
45
45
heroku ?: string
46
+ ory ?: string
46
47
}
47
48
48
49
interface UserSession {
You can’t perform that action at this time.
0 commit comments