diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2025-08-14 14:37:56 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2025-08-14 14:37:56 +0200 |
commit | c135fcf9041c604b32827a1cb027010bca5915ab (patch) | |
tree | 95a2331d5f0bc4a736aa0e716330c39b3fa1ea26 /src/Types | |
parent | 3f4b51b99a4f4dc41dbdce7f34afe7e15d3d426e (diff) |
POST login possible
Diffstat (limited to 'src/Types')
-rw-r--r-- | src/Types/AuthenticationType.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Types/AuthenticationType.php b/src/Types/AuthenticationType.php new file mode 100644 index 0000000..dc768d0 --- /dev/null +++ b/src/Types/AuthenticationType.php @@ -0,0 +1,14 @@ +<?php + +namespace App\Types; + +enum AuthenticationType: string +{ + case PASSWORD = "m.login.password"; + case RECAPTCHA = "m.login.recaptcha"; + case SSO = "m.login.sso"; + case EMAIL_IDENTITY = "m.login.email.identity"; + case MSISDN = "m.login.msisdn"; + case DUMMY = "m.login.dummy"; + case REGISTRATION_TOKEN = "m.login.registration_token"; +} |