mirror of https://github.com/jumpserver/jumpserver
20 lines
493 B
Python
20 lines
493 B
Python
from django.core.exceptions import PermissionDenied
|
|
from django.http import HttpResponseRedirect
|
|
from django_cas_ng.views import LoginView
|
|
|
|
from authentication.backends.base import BaseAuthCallbackClientView
|
|
|
|
__all__ = ['LoginView']
|
|
|
|
|
|
class CASLoginView(LoginView):
|
|
def get(self, request):
|
|
try:
|
|
return super().get(request)
|
|
except PermissionDenied:
|
|
return HttpResponseRedirect('/')
|
|
|
|
|
|
class CASCallbackClientView(BaseAuthCallbackClientView):
|
|
pass
|