# 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
7681a7a05f
commit
a71fc435e0
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user