Imported app urls not showing up in browesable API

from imported_app.urls import router as imported_app_router

Then in urlpatterns I have the following

urlpatterns = [url(r"^api/", include(imported_app_router.urls)),]

But for whatever reason it will not show up in the url list for browesable api when I run django server

I am either missing something

We’d need to see a lot more than this to try and diagnose it.

Please post your complete root urls.py file along with your imported_app_router.urls file.

This can be closed I found a solution.