mpeltriaux
a4de394a54
* replaces function based share views with class based * improves team-share autocomplete search * renames internal share url names
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: ksp-servicestelle@sgdnord.rlp.de
|
|
Created on: 19.08.22
|
|
|
|
"""
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.utils.decorators import method_decorator
|
|
|
|
from ema.models import Ema
|
|
from konova.decorators import conservation_office_group_required, shared_access_required
|
|
from konova.views.share import AbstractShareByTokenView, AbstractShareFormView
|
|
|
|
|
|
class EmaShareByTokenView(AbstractShareByTokenView):
|
|
model = Ema
|
|
redirect_url = "ema:detail"
|
|
|
|
@method_decorator(login_required)
|
|
def dispatch(self, request, *args, **kwargs):
|
|
return super().dispatch(request, *args, **kwargs)
|
|
|
|
|
|
class EmaShareFormView(AbstractShareFormView):
|
|
model = Ema
|
|
|
|
@method_decorator(login_required)
|
|
@method_decorator(conservation_office_group_required)
|
|
@method_decorator(shared_access_required(Ema, "id"))
|
|
def dispatch(self, request, *args, **kwargs):
|
|
return super().dispatch(request, *args, **kwargs)
|