source: trunk/src/templates/artifacts/Filters.groovy @ 304

Last change on this file since 304 was 304, checked in by duh, 13 years ago
  • added default comments to grails base templates
File size: 458 bytes
Line 
1/**
2 * @artifact.name@ Filters
3 *
4 * Description of my controller
5 *
6 * @author  your email (+name?)
7 * @since       2010mmdd
8 * @package     ???
9 *
10 * Revision information:
11 * $Rev$
12 * $Author$
13 * $Date$
14 */
15@artifact.package@class @artifact.name@ {
16    def filters = {
17        all(controller:'*', action:'*') {
18            before = {
19
20            }
21            after = {
22
23            }
24            afterView = {
25               
26            }
27        }
28    }
29   
30}
Note: See TracBrowser for help on using the repository browser.