diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2023-08-08 02:46:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-08 00:46:10 +0000 |
commit | 0c6ae61229bce9d9ad3d359cee927464968a2dd1 (patch) | |
tree | e7322e6b8ad0a34868e8d9cae445ffc24a3ca191 /templates/admin | |
parent | c2b6897e35ccdebc4b49cfc7fb165ee654c8e55d (diff) | |
download | gitea-0c6ae61229bce9d9ad3d359cee927464968a2dd1.tar.gz gitea-0c6ae61229bce9d9ad3d359cee927464968a2dd1.zip |
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.
![grafik](https://github.com/go-gitea/gitea/assets/1666336/b3e35d73-9496-4fa7-a20c-e5d30b1f6850)
---------
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/packages/list.tmpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/admin/packages/list.tmpl b/templates/admin/packages/list.tmpl index 9aa1d933f6..4cf30f58e6 100644 --- a/templates/admin/packages/list.tmpl +++ b/templates/admin/packages/list.tmpl @@ -4,6 +4,12 @@ {{.locale.Tr "admin.packages.package_manage_panel"}} ({{.locale.Tr "admin.total" .TotalCount}}, {{.locale.Tr "admin.packages.total_size" (FileSize .TotalBlobSize)}}, {{.locale.Tr "admin.packages.unreferenced_size" (FileSize .TotalUnreferencedBlobSize)}}) + <div class="ui right"> + <form method="post" action="/admin/packages/cleanup"> + {{.CsrfTokenHtml}} + <button class="ui primary tiny button">{{.locale.Tr "admin.packages.cleanup"}}</button> + </form> + </div> </h4> <div class="ui attached segment"> <form class="ui form ignore-dirty"> |