Changeset 779 for trunk/grails-app/domain
- Timestamp:
- Aug 6, 2010, 12:06:41 AM (11 years ago)
- Location:
- trunk/grails-app/domain/nimble
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/nimble/Profile.groovy
r770 r779 1 /**2 * Nimble Profile Domain Class3 *4 * @see http://www.grails.org/plugin/nimble5 *6 * Revision information:7 * $Rev$8 * $Author$9 * $Date$10 */11 1 12 2 package nimble 13 3 14 class Profile extends grails.plugins.nimble.core.ProfileBase { 4 class Profile { /* extends grails.plugins.nimble.core.ProfileBase { */ 5 15 6 // Extend ProfileBase with your custom values here 7 16 8 } -
trunk/grails-app/domain/nimble/User.groovy
r770 r779 1 /**2 * Nimble Profile Domain Class3 *4 * @see http://www.grails.org/plugin/nimble5 *6 * Revision information:7 * $Rev$8 * $Author$9 * $Date$10 */11 1 12 2 package nimble 13 3 14 class User extends grails.plugins.nimble.core.UserBase {15 def String toString() { 16 return this.username;17 } 4 class User { /* extends grails.plugins.nimble.core.UserBase { */ 5 6 // Extend UserBase with your custom values here 7 18 8 }
Note: See TracChangeset
for help on using the changeset viewer.