Files
ihrm/horilla_automations/admin.py

13 lines
179 B
Python
Raw Normal View History

from django.contrib import admin
from horilla_automations.models import MailAutomation
# Register your models here.
admin.site.register(
[
MailAutomation,
]
)