Changeset 456
- Timestamp:
- Mar 26, 2010, 2:13:36 AM (15 years ago)
- Location:
- trunk/grails-app/domain
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Asset.groovy
r343 r456 20 20 isActive() 21 21 section() 22 } 23 24 static mapping = { 25 assetSubItems(batchSize:1000) 22 26 } 23 27 -
trunk/grails-app/domain/AssetSubItem.groovy
r341 r456 23 23 } 24 24 25 static mapping = { 26 subItems(batchSize:1000) 27 } 28 25 29 String toString() { 26 30 "${this.name}" -
trunk/grails-app/domain/Section.groovy
r331 r456 22 22 } 23 23 24 static mapping = { 25 assets(batchSize:1000) 26 } 27 24 28 String toString() { 25 29 "${this.name}" -
trunk/grails-app/domain/Site.groovy
r402 r456 21 21 } 22 22 23 static mapping = { 24 sections(batchSize:1000) 25 } 26 23 27 String toString() { 24 28 "${this.name}"
Note: See TracChangeset
for help on using the changeset viewer.