Files
ihrm/outlook_auth/apps.py

15 lines
365 B
Python

from django.apps import AppConfig
class OutlookAuthConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "outlook_auth"
def ready(self):
from horilla.urls import urlpatterns,path,include
urlpatterns.append(
path("outlook/", include("outlook_auth.urls")),
)
return super().ready()