Skip to content

Commit

Permalink
remove jwt required from settings endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Dec 18, 2024
1 parent 7c7d557 commit b7a5209
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/src/predicTCR_server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def samples():
return get_samples(current_user.email)

@app.route("/api/settings", methods=["GET"])
@jwt_required()
def get_settings():
return db.session.get(Settings, 1).as_dict()

Expand Down

0 comments on commit b7a5209

Please sign in to comment.