Skip to content
Snippets Groups Projects
Verified Commit 9e90db7e authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Reduce code covered by try/except in app URL handling

parent f92ce074
No related branches found
No related tags found
1 merge request!1191Resolve "Apps should be able to register URLs for API stuff which are not mounted under /django/"
Pipeline #116454 failed
......@@ -413,19 +413,17 @@ for app_config in apps.app_configs.values():
try:
urls_module = import_module(f"{app_config.name}.urls")
except ModuleNotFoundError:
# Ignore exception as app just has no URLs
urls_module = None
if hasattr(urls_module, "urlpatterns"):
urlpatterns.append(
path(f"django/app/{app_config.label}/", include(urls_module.urlpatterns))
)
if hasattr(urls_module, "urlpatterns"):
urlpatterns.append(
path(f"django/app/{app_config.label}/", include(urls_module.urlpatterns))
)
if hasattr(urls_module, "api_urlpatterns"):
urlpatterns.append(
path(f"app/{app_config.label}/", include(urls_module.api_urlpatterns))
)
except ImportError:
# Ignore exception as app just has no URLs
pass # noqa
if hasattr(urls_module, "api_urlpatterns"):
urlpatterns.append(path(f"app/{app_config.label}/", include(urls_module.api_urlpatterns)))
urlpatterns.append(
re_path(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment