* Added pre commit hook * Run pre commit hook on all files --------- Co-authored-by: Horilla <131998600+horilla-opensource@users.noreply.github.com>
8 lines
194 B
Python
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)
|