Changeset 687 for trunk/grails-app/controllers/AppCoreController.groovy
- Timestamp:
- Oct 6, 2010, 1:55:47 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/AppCoreController.groovy
r627 r687 63 63 def plugins = pluginProperties.collect{ it.key + '-' + it.value }.join(", ") 64 64 65 def sections = Section.findAllByIsActive(true).sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) } 66 65 67 return [grailsVersion: grailsVersion, 66 68 applicationString: applicationString, 67 plugins: plugins] 69 plugins: plugins, 70 sections: sections] 68 71 } 69 72
Note: See TracChangeset
for help on using the changeset viewer.