Changeset 703 for trunk/grails-app
- Timestamp:
- Nov 6, 2010, 1:11:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/CreateDataService.groovy
r694 r703 36 36 createAdminAuthority() 37 37 } 38 if(!Person.findBy loginName("system") ) {38 if(!Person.findByLoginName("system") ) { 39 39 log.warn "LoginName 'system' not found, calling createSystemPerson()." 40 40 createSystemPerson() 41 41 } 42 if(!Person.findBy loginName("admin") ) {42 if(!Person.findByLoginName("admin") ) { 43 43 log.warn "LoginName 'admin' not found, calling createAdminPerson()." 44 44 createAdminPerson()
Note: See TracChangeset
for help on using the changeset viewer.