Files
ihrm/horilla_documents/admin.py
Ashwanth Balakrishnan 58be33a8d7 Added Pre-Commit Hooks (#175)
* Added pre commit hook

* Run pre commit hook on all files

---------

Co-authored-by: Horilla <131998600+horilla-opensource@users.noreply.github.com>
2024-05-07 12:23:36 +05:30

8 lines
194 B
Python

from django.contrib import admin
from horilla_documents.models import Document, DocumentRequest
# Register your models here.
admin.site.register(Document)
admin.site.register(DocumentRequest)