parent
466ea933cd
commit
a094ed7fc0
2 changed files with 8 additions and 0 deletions
|
|
@ -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."""
|
||||
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue