Changeset 32
- Timestamp:
- Oct 27, 2009, 10:31:59 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/BaseFilters.groovy
r29 r32 17 17 // define filters 18 18 def filters = { 19 loginCheck(controller:'*', action:'*') {19 defineStyle(controller:'*', action:'*') { 20 20 // before every execution 21 21 before = { 22 // set the style in the session23 //if (!session.style) {22 // set the default style in the session 23 if (!session.style) { 24 24 session.style = 'default_style' 25 //}25 } 26 26 } 27 27 }
Note: See TracChangeset
for help on using the changeset viewer.