Thomas Waldmann aa610e9c3a implement "update other services", with tests, no ui yet
(can be used when adding the records via django admin)
2013-11-26 08:10:05 +01:00

10 lines
304 B
Python

from django.contrib import admin
from .models import Host, Domain, BlacklistedDomain, ServiceUpdater, ServiceUpdaterHostConfig
admin.site.register(BlacklistedDomain)
admin.site.register(Domain)
admin.site.register(Host)
admin.site.register(ServiceUpdater)
admin.site.register(ServiceUpdaterHostConfig)