fix: sso on web

This commit is contained in:
Christian Pauly 2021-02-24 09:49:12 +01:00
parent 2bd7afc0f3
commit aa396acdc9
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ class FluffyClient extends Client {
databaseBuilder: getDatabase,
supportedLoginTypes: {
AuthenticationTypes.password,
if (PlatformInfos.isMobile) AuthenticationTypes.sso
if (PlatformInfos.isMobile || PlatformInfos.isWeb)
AuthenticationTypes.sso
},
);
}