[https://app.clickup.com/t/9014390315/PROD-186](PROD-186) Small update for auth modules for ClickUp integration. --------- Co-authored-by: Francisco Liberal <francisco@arcade.dev>
45 lines
598 B
Python
45 lines
598 B
Python
from arcade_core.auth import (
|
|
Asana,
|
|
Atlassian,
|
|
ClickUp,
|
|
Discord,
|
|
Dropbox,
|
|
GitHub,
|
|
Google,
|
|
Hubspot,
|
|
Linear,
|
|
LinkedIn,
|
|
Microsoft,
|
|
Notion,
|
|
OAuth2,
|
|
Reddit,
|
|
Slack,
|
|
Spotify,
|
|
ToolAuthorization,
|
|
Twitch,
|
|
X,
|
|
Zoom,
|
|
)
|
|
|
|
__all__ = [
|
|
"Asana",
|
|
"Atlassian",
|
|
"ClickUp",
|
|
"Discord",
|
|
"Dropbox",
|
|
"GitHub",
|
|
"Google",
|
|
"Hubspot",
|
|
"Linear",
|
|
"LinkedIn",
|
|
"Microsoft",
|
|
"Notion",
|
|
"OAuth2",
|
|
"Reddit",
|
|
"Slack",
|
|
"Spotify",
|
|
"ToolAuthorization",
|
|
"Twitch",
|
|
"X",
|
|
"Zoom",
|
|
]
|