Skip to content

Commit 0adbd10

Browse files
jvllmrThangHuuVu
andauthored
fix(providers): enable OIDC capabilities for Keycloak (#12964)
Co-authored-by: Thang Vu <[email protected]>
1 parent f39867a commit 0adbd10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/providers/keycloak.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* @module providers/keycloak
1010
*/
11-
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
11+
import type { OIDCConfig, OIDCUserConfig } from "./index.js"
1212

1313
export interface KeycloakProfile extends Record<string, any> {
1414
exp: number
@@ -99,8 +99,8 @@ export interface KeycloakProfile extends Record<string, any> {
9999
* :::
100100
*/
101101
export default function Keycloak<P extends KeycloakProfile>(
102-
options: OAuthUserConfig<P>
103-
): OAuthConfig<P> {
102+
options: OIDCUserConfig<P>
103+
): OIDCConfig<P> {
104104
return {
105105
id: "keycloak",
106106
name: "Keycloak",

0 commit comments

Comments
 (0)