pwa: activate django admin model UI (#25462)
gitea-wip/combo/pipeline/head Build queued... Details
gitea/combo/pipeline/head Build started... Details

This commit is contained in:
Elias Showk 2018-08-23 16:31:33 +02:00
parent 9e950ee28b
commit 7e288677ac
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,4 @@
from django.contrib import admin
from combo.apps.notifications.models import Notification
admin.site.register(Notification)

22
combo/apps/pwa/admin.py Normal file
View File

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# combo - Combo PWA App
# Copyright (C) 2018 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from django.contrib import admin
from .models import WebPushRecord
admin.site.register(WebPushRecord)