Files
scim_app/scim_app/scim_app/views.py
2022-01-13 14:23:13 +01:00

8 lines
272 B
Python

from django.utils.decorators import method_decorator
from django.views.generic import TemplateView
from basicauth.decorators import basic_auth_required
@method_decorator(basic_auth_required, name='dispatch')
class AuthView(TemplateView):
template_name = "index.html"