mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-02-22 15:37:42 +01:00
8 lines
213 B
Python
8 lines
213 B
Python
from django.contrib import admin
|
|
|
|
from apps.rules.models import TransactionRule, TransactionRuleAction
|
|
|
|
# Register your models here.
|
|
admin.site.register(TransactionRule)
|
|
admin.site.register(TransactionRuleAction)
|