Ignore:
Timestamp:
May 6, 2009, 3:40:07 AM (15 years ago)
Author:
gav
Message:

Logins now route through a welcome action to allow flash message and user environment setup. Session timeout now user configurable and defaults to 12 hours. Work on Planned Maintenance.

File:
1 edited

Legend:

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

    r124 r127  
    1 class MaintenanceAction {
     1class TaskAction {
     2    Task task
    23    MaintenancePolicy maintenancePolicy
    3     PlannedMaintenance plannedMaintenance
    44    SystemSection systemSection
    55    Asset asset
     
    88    SubAssembly subAssembly
    99    ComponentItem componentItem
    10     String maintenanceAction
     10    String action
    1111    String reasoning = ""
    12     Integer pmStepNumber
     12    Integer stepNumber
    1313    boolean isActive = true
    1414
    1515//     static hasMany = []
    1616
    17     static belongsTo = [PlannedMaintenance]
     17//     static belongsTo = []
    1818
    1919    static constraints = {
     
    2424        subAssembly(blank:true, nullable:true)
    2525        componentItem(blank:true, nullable:true)
    26         pmStepNumber(blank:true, nullable:true)
     26        stepNumber(blank:true, nullable:true)
    2727    }
    2828
Note: See TracChangeset for help on using the changeset viewer.