mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Backport #12864 Fix #12861 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		@@ -814,9 +814,9 @@ func RegisterRoutes(m *macaron.Macaron) {
 | 
			
		||||
	m.Group("/:username/:reponame", func() {
 | 
			
		||||
		m.Group("/releases", func() {
 | 
			
		||||
			m.Get("/", repo.Releases)
 | 
			
		||||
			m.Get("/tag/:tag", repo.SingleRelease)
 | 
			
		||||
			m.Get("/tag/*", repo.SingleRelease)
 | 
			
		||||
			m.Get("/latest", repo.LatestRelease)
 | 
			
		||||
		}, repo.MustBeNotEmpty, context.RepoRef())
 | 
			
		||||
		}, repo.MustBeNotEmpty, context.RepoRefByType(context.RepoRefTag))
 | 
			
		||||
		m.Group("/releases", func() {
 | 
			
		||||
			m.Get("/new", repo.NewRelease)
 | 
			
		||||
			m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user