Ignore:
Timestamp:
Feb 1, 2009, 2:40:28 PM (15 years ago)
Author:
gav
Message:

Change Person attribute of Task to leadPerson, update views and Bootstrap to suite.
Make entire row of Task list view clickable and go directly to edit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/grails-app/conf/BootStrap.groovy

    r44 r47  
    8080        //Task
    8181        new Task(taskGroup:TaskGroup.findByName("Engineering"),
    82                  person:Person.get(3),
     82                 leadPerson:Person.get(3),
    8383                 name:"Check specific level sensor",
    8484                 description:"Has been noted as problematic, try recallibrating",
     
    8686                 targetDate: new Date() ).save()
    8787        new Task(taskGroup:TaskGroup.findByName("Production"),
    88                  person:Person.get(5),
     88                 leadPerson:Person.get(5),
    8989                 name:"Production Report",
    9090                 description:"Production report for specific production run or shift",
     
    9292                 targetDate: new Date() ).save()
    9393        new Task(taskGroup:TaskGroup.findByName("NewProject(s)"),
    94                  person:Person.get(1),
     94                 leadPerson:Person.get(1),
    9595                 name:"Make killer CMMS app",
    9696                 description:"Use Grails and get a move on!",
Note: See TracChangeset for help on using the changeset viewer.