Changeset 246 for trunk/grails-app/conf
- Timestamp:
- Mar 8, 2010, 6:25:07 PM (14 years ago)
- Location:
- trunk/grails-app/conf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/BaseFilters.groovy
r172 r246 24 24 session.style = 'default_style' 25 25 } 26 27 // set session lifetime to 1 week 28 session.setMaxInactiveInterval(604800) 26 29 } 27 30 } -
trunk/grails-app/conf/BootStrap.groovy
r239 r246 20 20 def init = {servletContext -> 21 21 // define timezone 22 System.setProperty('user.timezone', 'CET') 22 System.setProperty('user.timezone', 'CET') 23 23 24 24 if (GrailsUtil.environment == GrailsApplication.ENV_DEVELOPMENT) { … … 134 134 135 135 def bloodSamplingProtocol = new Protocol( 136 name: ' Liversampling'136 name: 'Blood sampling' 137 137 ).with { if (!validate()) { errors.each { println it} } else save()} 138 138
Note: See TracChangeset
for help on using the changeset viewer.