Changeset 790
- Timestamp:
- Aug 9, 2010, 2:29:35 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r788 r790 1 1 #Grails Metadata file 2 # Fri Aug 06 00:36:52CEST 20102 #Mon Aug 09 14:17:53 CEST 2010 3 3 app.grails.version=1.3.3 4 4 app.name=gscf … … 11 11 plugins.mail=0.9 12 12 plugins.nadd-neutralizer=0.3 13 plugins.nimble=0.4-SNAPSHOT14 13 plugins.searchable=0.5.5 15 14 plugins.shiro=1.0.1 -
trunk/grails-app/domain/nimble/Profile.groovy
r784 r790 1 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 */ 2 15 package nimble 3 16 4 class Profile extends grails.plugins.nimble.core.ProfileBase { 5 6 // Extend ProfileBase with your custom values here 7 17 class Profile { 18 static constraints = { 19 } 8 20 } -
trunk/grails-app/domain/nimble/User.groovy
r784 r790 1 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 */ 2 15 package nimble 3 16 4 class User extends grails.plugins.nimble.core.UserBase { 5 6 // Extend UserBase with your custom values here 7 17 class User { 18 static constraints = { 19 } 8 20 }
Note: See TracChangeset
for help on using the changeset viewer.