from django.http import JsonResponse class LoginRequiredAjaxMixin(object): """ Objekt přidávající povinnost být přihlášený k zobrazení daného view. """ def dispatch(self, request, *args, **kwargs): #if request.is_ajax() and not request.user.is_authenticated: # Pokud to otevřu jako stránku, tak se omezení neuplatní, takže to asi nechceme if not request.user.is_authenticated: return JsonResponse(data={'results': [], 'pagination': {}}, status=401) return super(LoginRequiredAjaxMixin, self).dispatch(request, *args, **kwargs)