Ignore:
Timestamp:
Oct 6, 2010, 1:55:47 AM (14 years ago)
Author:
gav
Message:

Change assetDetail report to allow reporting by section and display site in report.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/controllers/AppCoreController.groovy

    r627 r687  
    6363        def plugins = pluginProperties.collect{ it.key + '-' + it.value }.join(", ")
    6464
     65        def sections = Section.findAllByIsActive(true).sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) }
     66
    6567        return [grailsVersion: grailsVersion,
    6668                    applicationString: applicationString,
    67                     plugins: plugins]
     69                    plugins: plugins,
     70                    sections: sections]
    6871    }
    6972
Note: See TracChangeset for help on using the changeset viewer.