Changeset 814
- Timestamp:
- Aug 17, 2010, 10:58:35 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 8 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r809 r814 1 1 #Grails Metadata file 2 # Mon Aug 16 12:14:34CEST 20102 #Tue Aug 17 10:04:53 CEST 2010 3 3 app.grails.version=1.3.4 4 4 app.name=gscf … … 11 11 plugins.mail=0.9 12 12 plugins.nadd-neutralizer=0.3 13 plugins.nimble=0.4-SNAPSHOT 13 14 plugins.searchable=0.5.5.1 15 plugins.shiro=1.0.1 14 16 plugins.tomcat=1.3.4 15 17 plugins.webflow=1.3.4 -
trunk/grails-app/domain/dbnp/user/Profile.groovy
r796 r814 1 /** 2 * Profile Domain Class 3 * 4 * Description of my domain class 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 2 package dbnp.user 16 3 17 class Profile { 18 static constraints = { 19 } 4 class Profile extends grails.plugins.nimble.core.ProfileBase { 5 6 // Extend ProfileBase with your custom values here 7 20 8 } -
trunk/grails-app/domain/dbnp/user/User.groovy
r796 r814 1 /** 2 * User Domain Class 3 * 4 * Description of my domain class 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 2 package dbnp.user 16 3 17 class User { 18 static constraints = { 19 } 4 class User extends grails.plugins.nimble.core.UserBase { 5 6 // Extend UserBase with your custom values here 7 20 8 }
Note: See TracChangeset
for help on using the changeset viewer.