Skip to content
Snippets Groups Projects
test_urls.py 233 B
Newer Older
  • Learn to ignore specific revisions
  • """
    Custom URL patterns for testing
    """
    from django.conf.urls import include, re_path
    
    urlpatterns = [
        re_path(r'^', include('workbench.urls')),
    
        re_path(r'^', include('lti_consumer.plugin.urls', namespace='lti_consumer')),