Changeset 73
- Timestamp:
- Jan 5, 2010, 11:38:58 AM (13 years ago)
- Location:
- trunk/grails-app/controllers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/HomeController.groovy
r71 r73 1 //import dbnp.studycapturing.Study1 import dbnp.studycapturing.Study 2 2 3 /** 4 * Home Controler 5 * 6 * My Description 7 * 8 * @author Kees van Bochove 9 * @since 20091102 10 * @package studycapturing 11 * 12 * Revision information: 13 * $Rev$ 14 * $Author$ 15 * $Date$ 16 */ 3 17 class HomeController { 4 18 def index = { 5 //[ studyCount: dbnp.studycapturing.Study.count() ]19 [ studyCount: dbnp.studycapturing.Study.count() ] 6 20 } 7 21 } -
trunk/grails-app/controllers/StudyController.groovy
r71 r73 1 /** 2 * Home Controler 3 * 4 * My Description 5 * 6 * @author Kees van Bochove 7 * @since 20091028 8 * @package studycapturing 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 class StudyController extends BaseController { 2 3 //def scaffold = dbnp.studycapturing.Study 16 def scaffold = dbnp.studycapturing.Study 4 17 }
Note: See TracChangeset
for help on using the changeset viewer.