Compare commits

...

2 Commits

Author SHA1 Message Date
8d6edb04ca Merge pull request '# HOTFIX' (#388) from master into Docker
Reviewed-on: SGD-Nord/konova#388
2024-02-21 18:32:16 +01:00
a71fc435e0 # HOTFIX
* drops need for authentication for calculated parcels of an entry (reports are publicly available -> does not need auth!)
2024-02-21 18:31:43 +01:00

View File

@ -19,7 +19,7 @@ from konova.sub_settings.lanis_settings import DEFAULT_SRID_RLP
from konova.tasks import celery_update_parcels from konova.tasks import celery_update_parcels
class GeomParcelsView(LoginRequiredMixin, View): class GeomParcelsView(View):
def get(self, request: HttpRequest, id: str): def get(self, request: HttpRequest, id: str):
""" Getter for HTMX """ Getter for HTMX
@ -109,7 +109,7 @@ class GeomParcelsView(LoginRequiredMixin, View):
return waiting_too_long return waiting_too_long
class GeomParcelsContentView(LoginRequiredMixin, View): class GeomParcelsContentView(View):
def get(self, request: HttpRequest, id: str, page: int): def get(self, request: HttpRequest, id: str, page: int):
""" Getter for infinite scroll of HTMX """ Getter for infinite scroll of HTMX