You've already forked Promocode-API
mirror of
https://github.com/devitq/Promocode-API.git
synced 2026-05-22 22:07:12 +00:00
b7d7334fe5
also bug fixes and improvements
16 lines
353 B
Python
16 lines
353 B
Python
from django.contrib import admin
|
|
|
|
from apps.promo.models import (
|
|
Promocode,
|
|
PromocodeActivation,
|
|
PromocodeComment,
|
|
PromocodeLike,
|
|
PromocodeTarget,
|
|
)
|
|
|
|
admin.site.register(Promocode)
|
|
admin.site.register(PromocodeTarget)
|
|
admin.site.register(PromocodeActivation)
|
|
admin.site.register(PromocodeComment)
|
|
admin.site.register(PromocodeLike)
|