Skip to content

Commit c85215a

Browse files
committed
fix: Correct indentation error in routes.py for discord and outlook OAuth
1 parent 0e1c835 commit c85215a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/server/main/integrations/routes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ async def get_integration_sources(user_id: str = Depends(auth_helper.get_current
7474
source_info["client_id"] = NOTION_CLIENT_ID
7575
elif name == 'trello':
7676
source_info["client_id"] = TRELLO_CLIENT_ID
77-
elif name == 'discord':
78-
source_info["client_id"] = DISCORD_CLIENT_ID
77+
elif name == 'discord':
78+
source_info["client_id"] = DISCORD_CLIENT_ID
7979
elif name == 'outlook':
80-
source_info["client_id"] = OUTLOOK_CLIENT_ID
80+
source_info["client_id"] = OUTLOOK_CLIENT_ID
8181

8282
all_sources.append(source_info)
8383

0 commit comments

Comments
 (0)