# HOTFIX
* drops need for authentication for calculated parcels of an entry (reports are publicly available -> does not need auth!)
This commit is contained in:
parent
df55c16498
commit
72f1d80261
@ -19,7 +19,7 @@ from konova.sub_settings.lanis_settings import DEFAULT_SRID_RLP
|
||||
from konova.tasks import celery_update_parcels
|
||||
|
||||
|
||||
class GeomParcelsView(LoginRequiredMixin, View):
|
||||
class GeomParcelsView(View):
|
||||
|
||||
def get(self, request: HttpRequest, id: str):
|
||||
""" Getter for HTMX
|
||||
@ -109,7 +109,7 @@ class GeomParcelsView(LoginRequiredMixin, View):
|
||||
return waiting_too_long
|
||||
|
||||
|
||||
class GeomParcelsContentView(LoginRequiredMixin, View):
|
||||
class GeomParcelsContentView(View):
|
||||
|
||||
def get(self, request: HttpRequest, id: str, page: int):
|
||||
""" Getter for infinite scroll of HTMX
|
||||
|
Loading…
Reference in New Issue
Block a user