Index: trunk/grails-app/controllers/AppCoreController.groovy
===================================================================
--- trunk/grails-app/controllers/AppCoreController.groovy	(revision 255)
+++ trunk/grails-app/controllers/AppCoreController.groovy	(revision 258)
@@ -7,6 +7,7 @@
 
     def personService
+    def appConfigService
     def createDataService
-    def appConfigService
+    def createBulkDataService
 
     def index = { redirect(action:start,params:params) }
@@ -176,3 +177,19 @@
     }
 
+    /**
+    * Allow admin to create bulk test data.
+    */
+    @Secured(['ROLE_AppAdmin'])
+    def createBulkTestData = {
+        if(!createBulkDataService.create()) {
+            flash.message = "Bulk test data could not be created."
+            redirect(action: appAdmin)
+            return
+        }
+
+        // Success.
+        flash.message = "Bulk test data created."
+        redirect(action: appAdmin)
+    }
+
 } // end of class.
