Changeset 142 for trunk/grails-app/conf
- Timestamp:
- Oct 3, 2009, 1:48:27 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/BootStrap.groovy
r140 r142 283 283 leadPerson:Person.get(2), 284 284 description:"Check specific level sensor", 285 comment:"Has been noted as problematic, try recalibrating.") 285 comment:"Has been noted as problematic, try recalibrating.", 286 targetStartDate:new Date()) 286 287 BootStrapSaveAndTest(taskInstance) 287 288 … … 294 295 description:"Some follow-up work", 295 296 comment:"Some help required", 297 targetStartDate:new Date()+1, 296 298 parentTask: Task.get(1)) 297 299 BootStrapSaveAndTest(taskInstance) … … 305 307 description:"A Sub Task can be created by setting the Parent Task value", 306 308 comment:"Some help required", 309 targetStartDate:new Date()-1, 307 310 parentTask: Task.get(1)) 308 311 BootStrapSaveAndTest(taskInstance) … … 316 319 description:"Replace sensor at next opportunity.", 317 320 comment:"Nothing else has worked.", 321 targetStartDate:new Date()+7, 318 322 parentTask: Task.get(1)) 319 323 BootStrapSaveAndTest(taskInstance) … … 326 330 leadPerson:Person.get(6), 327 331 description:"Production Report", 328 comment:"Production report for specific production run or shift") 332 comment:"Production report for specific production run or shift", 333 targetStartDate:new Date()-7) 329 334 BootStrapSaveAndTest(taskInstance) 330 335 … … 336 341 leadPerson:Person.get(1), 337 342 description:"Make killer CMMS app", 338 comment:"Use Grails and get a move on!") 343 comment:"Use Grails and get a move on!", 344 targetStartDate:new Date()-6) 339 345 BootStrapSaveAndTest(taskInstance) 340 346
Note: See TracChangeset
for help on using the changeset viewer.