Add initial database erase support

This commit is contained in:
Roberto Rosario
2012-07-26 05:03:02 -04:00
parent bccc228fa0
commit ac65a6db76
7 changed files with 74 additions and 16 deletions

View File

@@ -3,4 +3,5 @@ from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('bootstrap.views',
url(r'^type/list/$', 'bootstrap_type_list', (), 'bootstrap_type_list'),
url(r'^(?P<bootstrap_name>\w+)/execute/$', 'bootstrap_execute', (), 'bootstrap_execute'),
url(r'^nuke/$', 'erase_database_view', (), 'erase_database_view'),
)