mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-21 23:56:34 +00:00
Adds site settings and users to django admin
This commit is contained in:
parent
c8348606da
commit
1f8ac546fa
1 changed files with 6 additions and 0 deletions
6
bookwyrm/admin.py
Normal file
6
bookwyrm/admin.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
''' models that will show up in django admin for superuser '''
|
||||
from django.contrib import admin
|
||||
from bookwyrm import models
|
||||
|
||||
admin.site.register(models.SiteSettings)
|
||||
admin.site.register(models.User)
|
Loading…
Reference in a new issue