@@ -978,9 +978,6 @@ func registerRoutes(m *web.Route) {
978
978
}, reqUnitAccess (unit .TypeCode , perm .AccessModeRead , false ))
979
979
}, ignSignIn , context_service .UserAssignmentWeb (), context .OrgAssignment ()) // for "/{username}/-" (packages, projects, code)
980
980
981
- // ***** Release Attachment Download without Signin
982
- m .Get ("/{username}/{reponame}/releases/download/{vTag}/{fileName}" , ignSignIn , context .RepoAssignment , repo .MustBeNotEmpty , repo .RedirectDownload )
983
-
984
981
m .Group ("/{username}/{reponame}" , func () {
985
982
m .Group ("/settings" , func () {
986
983
m .Group ("" , func () {
@@ -1240,8 +1237,9 @@ func registerRoutes(m *web.Route) {
1240
1237
m .Get (".rss" , feedEnabled , repo .ReleasesFeedRSS )
1241
1238
m .Get (".atom" , feedEnabled , repo .ReleasesFeedAtom )
1242
1239
}, ctxDataSet ("EnableFeed" , setting .Other .EnableFeed ),
1243
- repo .MustBeNotEmpty , reqRepoReleaseReader , context .RepoRefByType (context .RepoRefTag , true ))
1244
- m .Get ("/releases/attachments/{uuid}" , repo .MustBeNotEmpty , reqRepoReleaseReader , repo .GetAttachment )
1240
+ repo .MustBeNotEmpty , context .RepoRefByType (context .RepoRefTag , true ))
1241
+ m .Get ("/releases/attachments/{uuid}" , repo .MustBeNotEmpty , repo .GetAttachment )
1242
+ m .Get ("/releases/download/{vTag}/{fileName}" , repo .MustBeNotEmpty , repo .RedirectDownload )
1245
1243
m .Group ("/releases" , func () {
1246
1244
m .Get ("/new" , repo .NewRelease )
1247
1245
m .Post ("/new" , web .Bind (forms.NewReleaseForm {}), repo .NewReleasePost )
0 commit comments