Skip to content

Commit

Permalink
fix: profile active
Browse files Browse the repository at this point in the history
  • Loading branch information
utnapischtim committed Mar 20, 2024
1 parent 834236d commit 231cbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invenio_userprofiles/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def userprofile(value):
warn("userprofile template filter is deprecated.", DeprecationWarning)
return UserProfileProxy.get_by_userid(int(value))

blueprint.add_url_rule("/", "profile", view_func=profile, methods=["GET", "POST"])
blueprint.add_url_rule("/profile", view_func=profile, methods=["GET", "POST"])

return blueprint

Expand Down

0 comments on commit 231cbbe

Please sign in to comment.