Added Feed model to admin interface

This commit is contained in:
Amazed 2018-11-30 22:04:22 +01:00
parent e2028bbe48
commit bbefbea939
1 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
from django.contrib import admin
from .models import Feed
# Register your models here.
admin.site.register(Feed)