parent
466ea933cd
commit
a094ed7fc0
2 changed files with 8 additions and 0 deletions
|
|
@ -35,6 +35,12 @@ class Discord(OAuth2):
|
||||||
provider_id: str = "discord"
|
provider_id: str = "discord"
|
||||||
|
|
||||||
|
|
||||||
|
class Dropbox(OAuth2):
|
||||||
|
"""Marks a tool as requiring Dropbox authorization."""
|
||||||
|
|
||||||
|
provider_id: str = "dropbox"
|
||||||
|
|
||||||
|
|
||||||
class Google(OAuth2):
|
class Google(OAuth2):
|
||||||
"""Marks a tool as requiring Google authorization."""
|
"""Marks a tool as requiring Google authorization."""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
from arcade.core.auth import (
|
from arcade.core.auth import (
|
||||||
Discord,
|
Discord,
|
||||||
|
Dropbox,
|
||||||
GitHub,
|
GitHub,
|
||||||
Google,
|
Google,
|
||||||
LinkedIn,
|
LinkedIn,
|
||||||
|
|
@ -13,6 +14,7 @@ from arcade.core.auth import (
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Discord",
|
"Discord",
|
||||||
|
"Dropbox",
|
||||||
"GitHub",
|
"GitHub",
|
||||||
"Google",
|
"Google",
|
||||||
"LinkedIn",
|
"LinkedIn",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue