Skip to content

Commit

Permalink
[Fix] Allow special chars when specifying flag_name in API (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitvinnakota-codecov authored Jul 2, 2024
1 parent d6ccfff commit d46630d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/public/v2/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
service_prefix = "<str:service>/"
owner_prefix = "<str:service>/<str:owner_username>/"
repo_prefix = "<str:service>/<str:owner_username>/repos/<str:repo_name>/"
flag_prefix = repo_prefix + "flags/<str:flag_name>/"
flag_prefix = repo_prefix + "flags/<path:flag_name>/"
commit_prefix = repo_prefix + "commits/<str:commitid>/"

urlpatterns = [
Expand Down

0 comments on commit d46630d

Please sign in to comment.