Ignore:
Timestamp:
Nov 5, 2009, 4:01:35 AM (14 years ago)
Author:
gav
Message:

Change is* in Task to just 'active', 'scheduled' and 'approved'.
Regenerate non detailed controller and views.
Adjust detailed controller, views and services to suite.
Add support for task actions 'approve', 'complete', 'trash' and their counter parts.
Default task status to "not started" when creating a new task.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/Task.groovy

    r168 r181  
    1515    Date targetStartDate = new Date()
    1616    Date targetCompletionDate = new Date()
    17     boolean isScheduled = false
    18     boolean isApproved = false
    19     boolean isActive = true
     17    boolean scheduled = false
     18    boolean approved = false
     19    boolean trash = false
    2020
    2121    static hasMany = [entries: Entry,
Note: See TracChangeset for help on using the changeset viewer.