feat: add microsoft oauth (#3152)

This commit is contained in:
heheer
2024-11-14 10:33:49 +08:00
committed by GitHub
parent 0472dc2967
commit 0c9e10dd2b
7 changed files with 24 additions and 8 deletions

View File

@@ -56,6 +56,7 @@ export type FastGPTFeConfigsType = {
github?: string;
google?: string;
wechat?: string;
microsoft?: string;
};
limit?: {
exportDatasetLimitMinutes?: number;

View File

@@ -14,5 +14,6 @@ export const userStatusMap = {
export enum OAuthEnum {
github = 'github',
google = 'google',
wechat = 'wechat'
wechat = 'wechat',
microsoft = 'microsoft'
}