diff options
author | zeripath <art27@cantab.net> | 2022-01-26 20:01:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 20:01:35 +0000 |
commit | 9a75c2741d2806f5bb12d21b5a9d7387b2d44073 (patch) | |
tree | dddcce80b8095fa24edf683a6e61a58b0fb56835 /go.mod | |
parent | 3bb028cc46401a8a54ecab7e7c035dbb24937b6c (diff) | |
download | gitea-9a75c2741d2806f5bb12d21b5a9d7387b2d44073.tar.gz gitea-9a75c2741d2806f5bb12d21b5a9d7387b2d44073.zip |
Only view milestones from current repo (#18414)
The endpoint /{username}/{reponame}/milestone/{id} is not currently restricted to
the repo. This PR restricts the milestones to those within the repo.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -97,7 +97,7 @@ require ( github.com/quasoft/websspi v1.0.0 github.com/rs/xid v1.3.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect - github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect + github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 github.com/sergi/go-diff v1.2.0 github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 |