# -*- coding: utf-8 -*- # # ITerativ GmbH # http://www.iterativ.ch/ # # Copyright (c) 2020 ITerativ GmbH. All rights reserved. # # Created on 25.02.20 # @author: chrigu from django.conf.urls import url from django.views.decorators.csrf import csrf_exempt from registration.view import RegistrationProxyView app_name = 'registration' urlpatterns = [ url(r'^registration/', csrf_exempt(RegistrationProxyView.as_view()), name="proxy"), ]