push notifications
[wolnelektury.git] / src / push / admin.py
diff --git a/src/push/admin.py b/src/push/admin.py
new file mode 100644 (file)
index 0000000..339e2e7
--- /dev/null
@@ -0,0 +1,10 @@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.contrib import admin
+
+from .models import Notification
+
+
+admin.site.register(Notification)