Skip to content
Snippets Groups Projects
Commit db9b9152 authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Add machine_type table to admin interface

JIRA INFRA-281
parent 97c49406
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,7 @@ def create_app(config=None):
admin.add_view(AdminModelView(models.Domain, db.session))
admin.add_view(AdminModelView(models.NetworkScope, db.session))
admin.add_view(NetworkAdmin(models.Network, db.session, endpoint='networks'))
admin.add_view(AdminModelView(models.MachineType, db.session))
admin.add_view(AdminModelView(models.Host, db.session))
admin.add_view(AdminModelView(models.Interface, db.session))
admin.add_view(AdminModelView(models.Mac, db.session))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment