13 lines
243 B
Python
13 lines
243 B
Python
from django.urls import include, path
|
|
|
|
from wagtail import hooks
|
|
|
|
from . import urls
|
|
|
|
|
|
@hooks.register("register_admin_urls")
|
|
def register_admin_urls():
|
|
return [
|
|
path("settings/", include(urls, namespace="wagtailsettings")),
|
|
]
|