Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
17 lines
338 B
Python
17 lines
338 B
Python
"""
|
|
This module defines the URL patterns for domain related views.
|
|
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
from django.urls import re_path
|
|
|
|
from .views import CreateHostingDomain
|
|
|
|
urlpatterns = [
|
|
re_path(
|
|
r"^(?P<package>\d+)/create$",
|
|
CreateHostingDomain.as_view(),
|
|
name="create_hosting_domain",
|
|
),
|
|
]
|