mirror of
https://mau.dev/mautrix/go.git
synced 2026-03-14 14:25:53 +01:00
Remove unstable prefixed constant for appservice login
This commit is contained in:
parent
eaab53cb03
commit
58e10ec2ac
1 changed files with 9 additions and 11 deletions
20
requests.go
20
requests.go
|
|
@ -11,17 +11,15 @@ import (
|
|||
type AuthType string
|
||||
|
||||
const (
|
||||
AuthTypePassword AuthType = "m.login.password"
|
||||
AuthTypeReCAPTCHA AuthType = "m.login.recaptcha"
|
||||
AuthTypeOAuth2 AuthType = "m.login.oauth2"
|
||||
AuthTypeSSO AuthType = "m.login.sso"
|
||||
AuthTypeEmail AuthType = "m.login.email.identity"
|
||||
AuthTypeMSISDN AuthType = "m.login.msisdn"
|
||||
AuthTypeToken AuthType = "m.login.token"
|
||||
AuthTypeDummy AuthType = "m.login.dummy"
|
||||
|
||||
AuthTypeAppservice AuthType = "m.login.application_service"
|
||||
AuthTypeHalfyAppservice AuthType = "uk.half-shot.msc2778.login.application_service"
|
||||
AuthTypePassword AuthType = "m.login.password"
|
||||
AuthTypeReCAPTCHA AuthType = "m.login.recaptcha"
|
||||
AuthTypeOAuth2 AuthType = "m.login.oauth2"
|
||||
AuthTypeSSO AuthType = "m.login.sso"
|
||||
AuthTypeEmail AuthType = "m.login.email.identity"
|
||||
AuthTypeMSISDN AuthType = "m.login.msisdn"
|
||||
AuthTypeToken AuthType = "m.login.token"
|
||||
AuthTypeDummy AuthType = "m.login.dummy"
|
||||
AuthTypeAppservice AuthType = "m.login.application_service"
|
||||
)
|
||||
|
||||
type IdentifierType string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue