Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ELHart05 committed Sep 5, 2024
1 parent 1d581d9 commit e0ad53a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/Routers/authRouter.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ async def google_callback(code: str):

return RedirectResponse(url=f"{os.getenv('OAUTH_SUCCESS_REDIRECT_URL')}?error={e}")

@authRouter.get("/oauth/{session_id}", status_code=status.HTTP_200_OK)
@authRouter.get("/oauth/{session_id}", status_code=status.HTTP_200_OK, include_in_schema=False)
async def get_current_user_session(session_id: str):
"""
Returns the user oauth protected session details.
Expand Down

0 comments on commit e0ad53a

Please sign in to comment.