[ADD] OUTLOOK: Add outlook mail integration to Horilla

This commit is contained in:
Horilla
2025-02-25 17:53:28 +05:30
parent b630caa940
commit 1f306792ea
18 changed files with 769 additions and 8 deletions

20
outlook_auth/forms.py Normal file
View File

@@ -0,0 +1,20 @@
"""
outlook_auth/forms.py
"""
from base.forms import ModelForm
from outlook_auth import models
class OutlookServerForm(ModelForm):
"""
OutlookServerForm
"""
class Meta:
"""
Meta
"""
model = models.AzureApi
fields = "__all__"