19 lines
474 B
Python
19 lines
474 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class OnboardingConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "onboarding"
|
|
|
|
def ready(self):
|
|
from django.urls import include, path
|
|
|
|
from horilla.horilla_settings import APPS
|
|
from horilla.urls import urlpatterns
|
|
|
|
APPS.append("onboarding")
|
|
urlpatterns.append(
|
|
path("onboarding/", include("onboarding.urls")),
|
|
)
|
|
super().ready()
|