[ADD] OUTLOOK: Add outlook mail integration to Horilla
This commit is contained in:
14
outlook_auth/apps.py
Normal file
14
outlook_auth/apps.py
Normal file
@@ -0,0 +1,14 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user