File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import AdminForthAdapterGithubOauth2 from "../../adapters/adminforth-github-oau
18
18
import AdminForthAdapterFacebookOauth2 from "../../adapters/adminforth-facebook-oauth-adapter" ;
19
19
import AdminForthAdapterKeycloakOauth2 from "../../adapters/adminforth-keycloak-oauth-adapter" ;
20
20
import AdminForthAdapterMicrosoftOauth2 from "../../adapters/adminforth-microsoft-oauth-adapter" ;
21
+ import AdminForthAdapterTwitchOauth2 from "../../adapters/adminforth-twitch-oauth-adapter" ;
21
22
import { randomUUID } from "crypto" ;
22
23
23
24
declare global {
@@ -38,6 +39,8 @@ declare global {
38
39
KEYCLOAK_REALM : string ;
39
40
MICROSOFT_CLIENT_ID : string ;
40
41
MICROSOFT_CLIENT_SECRET : string ;
42
+ TWITCH_CLIENT_ID : string ;
43
+ TWITCH_CLIENT_SECRET : string ;
41
44
42
45
}
43
46
}
@@ -133,6 +136,10 @@ export default {
133
136
clientSecret : process . env . MICROSOFT_CLIENT_SECRET ,
134
137
useOpenID : true ,
135
138
} ) ,
139
+ new AdminForthAdapterTwitchOauth2 ( {
140
+ clientID : process . env . TWITCH_CLIENT_ID ,
141
+ clientSecret : process . env . TWITCH_CLIENT_SECRET ,
142
+ } ) ,
136
143
// new AdminForthAdapterKeycloakOauth2({
137
144
// name: "Keycloak",
138
145
// clientID: process.env.KEYCLOAK_CLIENT_ID,
You can’t perform that action at this time.
0 commit comments