mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-08 15:44:56 -04:00
Implementation of MSC3882 login token request (#13722)
This commit is contained in:
parent
269eddad6f
commit
0fd2f2d460
6 changed files with 238 additions and 0 deletions
|
@ -96,3 +96,10 @@ class ExperimentalConfig(Config):
|
|||
|
||||
# MSC3881: Remotely toggle push notifications for another client
|
||||
self.msc3881_enabled: bool = experimental.get("msc3881_enabled", False)
|
||||
|
||||
# MSC3882: Allow an existing session to sign in a new session
|
||||
self.msc3882_enabled: bool = experimental.get("msc3882_enabled", False)
|
||||
self.msc3882_ui_auth: bool = experimental.get("msc3882_ui_auth", True)
|
||||
self.msc3882_token_timeout = self.parse_duration(
|
||||
experimental.get("msc3882_token_timeout", "5m")
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue