mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Allow package cleanup from admin page (#25307)
Until now expired package data gets deleted daily by a cronjob. The admin page shows the size of all packages and the size of unreferenced data. The users (#25035, #20631) expect the deletion of this data if they run the cronjob from the admin page but the job only deletes data older than 24h. This PR adds a new button which deletes all expired data.  --------- Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
		@@ -597,6 +597,7 @@ func registerRoutes(m *web.Route) {
 | 
			
		||||
		m.Group("/packages", func() {
 | 
			
		||||
			m.Get("", admin.Packages)
 | 
			
		||||
			m.Post("/delete", admin.DeletePackageVersion)
 | 
			
		||||
			m.Post("/cleanup", admin.CleanupExpiredData)
 | 
			
		||||
		}, packagesEnabled)
 | 
			
		||||
 | 
			
		||||
		m.Group("/hooks", func() {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user