Skip to content

Commit

Permalink
Update to api response return type
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehgrantsgov committed Jan 2, 2025
1 parent fc0affc commit 88a81e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/api/users/user_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def user_save_opportunity(
@user_blueprint.doc(responses=[200, 401])
@user_blueprint.auth_required(api_jwt_auth)
@flask_db.with_db_session()
def user_get_saved_opportunities(db_session: db.Session, user_id: UUID) -> dict:
def user_get_saved_opportunities(db_session: db.Session, user_id: UUID) -> response.ApiResponse:
logger.info("GET /v1/users/:user_id/saved-opportunities")

user_token_session: UserTokenSession = api_jwt_auth.current_user # type: ignore
Expand Down

0 comments on commit 88a81e6

Please sign in to comment.