We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 466ea93 commit a094ed7Copy full SHA for a094ed7
arcade/arcade/core/auth.py
@@ -35,6 +35,12 @@ class Discord(OAuth2):
35
provider_id: str = "discord"
36
37
38
+class Dropbox(OAuth2):
39
+ """Marks a tool as requiring Dropbox authorization."""
40
+
41
+ provider_id: str = "dropbox"
42
43
44
class Google(OAuth2):
45
"""Marks a tool as requiring Google authorization."""
46
arcade/arcade/sdk/auth/__init__.py
@@ -1,5 +1,6 @@
1
from arcade.core.auth import (
2
Discord,
3
+ Dropbox,
4
GitHub,
5
Google,
6
LinkedIn,
@@ -13,6 +14,7 @@
13
14
15
__all__ = [
16
"Discord",
17
+ "Dropbox",
18
"GitHub",
19
"Google",
20
"LinkedIn",
0 commit comments