Skip to content

Commit bb33a97

Browse files
committed
Fixed a slash in api endpoint
1 parent 0650997 commit bb33a97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/PyMatcha/routes/api/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
user_bp = Blueprint("user", __name__)
3030

3131

32-
@user_bp.route("/users/", methods=["GET"])
32+
@user_bp.route("/users", methods=["GET"])
3333
@jwt_required
3434
def get_all_users():
3535
current_app.logger.info("/users/ -> Call")

0 commit comments

Comments
 (0)