aboutsummaryrefslogtreecommitdiffstats
path: root/warningmgr/admin.py
blob: b2ba183b101ef8f95204bd181dada336ea275562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# buildhistory-web - admin interface definitions
#
# Copyright (C) 2013-2015 Intel Corporation
#
# Licensed under the MIT license, see COPYING.MIT for details

from warningmgr.models import Build, WarningItem, Comment
from django.contrib import admin

admin.site.register(Build)
admin.site.register(WarningItem)
admin.site.register(Comment)