Files
ihrm/outlook_auth/apps.py

15 lines
367 B
Python
Raw Normal View History

from django.apps import AppConfig
class OutlookAuthConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "outlook_auth"
def ready(self):
2025-02-26 10:56:53 +05:30
from horilla.urls import include, path, urlpatterns
urlpatterns.append(
path("outlook/", include("outlook_auth.urls")),
)
return super().ready()