Add Attio to the wellknown OAuth2 provider classes so toolkits can use Attio(scopes=[...]) instead of OAuth2(id=..., scopes=[...]). --------- Co-authored-by: Eric Gustin <eric@arcade.dev>
51 lines
678 B
Python
51 lines
678 B
Python
from arcade_core.auth import (
|
|
Asana,
|
|
Atlassian,
|
|
Attio,
|
|
ClickUp,
|
|
Discord,
|
|
Dropbox,
|
|
Figma,
|
|
GitHub,
|
|
Google,
|
|
Hubspot,
|
|
Linear,
|
|
LinkedIn,
|
|
Microsoft,
|
|
Notion,
|
|
OAuth2,
|
|
PagerDuty,
|
|
Reddit,
|
|
Slack,
|
|
Spotify,
|
|
ToolAuthorization,
|
|
Twitch,
|
|
X,
|
|
Zoom,
|
|
)
|
|
|
|
__all__ = [
|
|
"Asana",
|
|
"Atlassian",
|
|
"Attio",
|
|
"ClickUp",
|
|
"Discord",
|
|
"Dropbox",
|
|
"Figma",
|
|
"GitHub",
|
|
"Google",
|
|
"Hubspot",
|
|
"Linear",
|
|
"LinkedIn",
|
|
"Microsoft",
|
|
"Notion",
|
|
"PagerDuty",
|
|
"OAuth2",
|
|
"Reddit",
|
|
"Slack",
|
|
"Spotify",
|
|
"ToolAuthorization",
|
|
"Twitch",
|
|
"X",
|
|
"Zoom",
|
|
]
|