Add Dropbox as an auth provider. (#164)

Related to: CU-86b2dtdj2
This commit is contained in:
Wils Dawson 2024-11-27 11:04:39 -08:00 committed by GitHub
parent 466ea933cd
commit a094ed7fc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View file

@ -35,6 +35,12 @@ class Discord(OAuth2):
provider_id: str = "discord"
class Dropbox(OAuth2):
"""Marks a tool as requiring Dropbox authorization."""
provider_id: str = "dropbox"
class Google(OAuth2):
"""Marks a tool as requiring Google authorization."""

View file

@ -1,5 +1,6 @@
from arcade.core.auth import (
Discord,
Dropbox,
GitHub,
Google,
LinkedIn,
@ -13,6 +14,7 @@ from arcade.core.auth import (
__all__ = [
"Discord",
"Dropbox",
"GitHub",
"Google",
"LinkedIn",