Compare commits
2 commits
69638b6b6d
...
1d4f070867
Author | SHA1 | Date | |
---|---|---|---|
1d4f070867 | |||
d1494af0a1 |
4 changed files with 6 additions and 3 deletions
|
@ -1,6 +1,9 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
* :release:`0.14.3 <2023-07-22>`
|
||||
* :bug:`-` fix missing permission check on disk space detail view
|
||||
|
||||
* :release:`0.14.2 <2023-07-22>`
|
||||
* :bug:`-` fix division by zero for hosting packages without disk space allocation
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# import celery_app to initialize it
|
||||
from gnuviechadmin.celery import app as celery_app # NOQA
|
||||
|
||||
__version__ = "0.14.2"
|
||||
__version__ = "0.14.3"
|
||||
|
|
|
@ -321,7 +321,7 @@ class UploadCustomerPackageDiskUsage(APIView):
|
|||
return Response("Accepted", status=http.HTTPStatus.ACCEPTED)
|
||||
|
||||
|
||||
class CustomerHostingPackageDiskUsageDetails(DetailView):
|
||||
class CustomerHostingPackageDiskUsageDetails(StaffOrSelfLoginRequiredMixin, DetailView):
|
||||
template_name_suffix = "_disk_usage_details"
|
||||
model = CustomerHostingPackage
|
||||
pk_url_kwarg = "package"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "gva"
|
||||
version = "0.14.2"
|
||||
version = "0.14.3"
|
||||
description = "gnuviechadmin web interface"
|
||||
authors = ["Jan Dittberner <jan@dittberner.info>"]
|
||||
license = "AGPL-3+"
|
||||
|
|
Loading…
Reference in a new issue