1
0
Fork 0
mirror of synced 2024-07-05 22:40:39 +12:00

Add Microsoft to LoginSource enum

This commit is contained in:
jvcalderon 2024-01-29 09:12:56 +01:00
parent 4e57a1cbd6
commit 82f457008f

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 {