Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wagtail-gardentronic / contrib / settings / wagtail_hooks.py
Size: Mime:
from django.conf.urls import include, url

from wagtail.core import hooks

from . import urls


@hooks.register('register_admin_urls')
def register_admin_urls():
    return [
        url(r'^settings/', include(urls, namespace='wagtailsettings')),
    ]