﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
34585	Can we use Class with urlpatterns attribute for parameter in include method?	Neeraj Kumar	nobody	"
{{{
class ApiV1:
    urlpatterns = (
        path(""auth/"", include(""v1.user.urls"")),
        path(""doctor/"", include(""v1.doctor.urls"")),
        path(""patient/"", include(""v1.patient.urls"")),
    )


class ApiV2:
    urlpatterns = (
        path(""auth/"", include(""v2.user.urls"")),
        path(""doctor/"", include(""v2.doctor.urls"")),
        path(""patient/"", include(""v2.patient.urls"")),
    )


urlpatterns = i18n_patterns(
    path(""admin/"", admin.site.urls),
    path('api/v1/', include(ApiV1)),
    path('api/v2/', include(ApiV2)),
    prefix_default_language=False,
)
}}}


this code is working for me, but in Django docs, nothing mentioned for Class can be used with include method?

So do we need to put restrictions from the Django side for don't use class or otherwise update docs and code to accept Class as an argument in the include method?
"	Cleanup/optimization	closed	Core (URLs)	4.1	Normal	invalid	urls		Unreviewed	0	0	0	0	0	0
