1
0
Fork 0
mirror of synced 2024-07-08 15:56:23 +12:00

Merge pull request #12890 from Budibase/fix/ms-auth-err-self

[Added] Microsoft to LoginSource enum
This commit is contained in:
José Vte. Calderón 2024-01-29 10:13:24 +01:00 committed by GitHub
commit 3f5a6e825d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

@ -1 +1 @@
Subproject commit dd9cec22751405e042ba0fe58e3c05f7223c3723
Subproject commit 41006f147ea40a8424a9e4e66c1d0570b82d79e7

View file

@ -1,7 +1,12 @@
import { BaseEvent } from "./event"
import { ConfigType } from "../../documents"
export type LoginSource = "local" | "google" | "oidc" | "google-internal"
export type LoginSource =
| "local"
| "google"
| "microsoft"
| "oidc"
| "google-internal"
export type SSOType = ConfigType.OIDC | ConfigType.GOOGLE
export interface LoginEvent extends BaseEvent {