* Added pre commit hook * Run pre commit hook on all files --------- Co-authored-by: Horilla <131998600+horilla-opensource@users.noreply.github.com>
12 lines
190 B
Python
12 lines
190 B
Python
"""
|
|
admin.py
|
|
"""
|
|
|
|
from django.contrib import admin
|
|
|
|
from horilla_audit.models import AuditTag, HorillaAuditInfo, HorillaAuditLog
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(AuditTag)
|