Ignore:
Timestamp:
Oct 8, 2009, 7:58:38 PM (15 years ago)
Author:
gav
Message:

Re-install class-diagram from local svn build with patch to allow war deployment.
Class-diagram overrides removed from Config.groovy since these have all been included upstream.
Tidy comments in SecurityConfig?.groovy
Some work on adding assignedPerson work flow and PersonController?.
Add navAlt and filterPane search to Person and TaskProcedure?.

Location:
trunk/grails-app/domain
Files:
3 edited

Legend:

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

    r58 r147  
    1212                description()
    1313        }
     14
     15    String toString() {
     16        "${this.authority}"
     17    }
    1418}
  • trunk/grails-app/domain/Person.groovy

    r139 r147  
    3333
    3434        static constraints = {
    35                 loginName(blank: false, unique: true, minSize:4)//minSize:7
     35                loginName(blank: false, unique: true, minSize:4) //minSize:7
    3636                firstName(blank: false)
    3737        lastName(blank: false)
     
    4444                password(blank: false)
    4545        //So we need to use pass for validation then encode it for above.
    46         pass(blank: false, minSize:4)
     46        pass(blank: false, minSize:4) //minSize:7
    4747        sessionTimeout(min:60, max:43200)
    4848
  • trunk/grails-app/domain/Task.groovy

    r146 r147  
    2020
    2121    static hasMany = [entries: Entry,
    22                         taskModifications: TaskModification, 
    23                         assignedPersons: AssignedPerson, 
     22                        taskModifications: TaskModification,
     23                        assignedPersons: AssignedPerson,
    2424                        subTasks: Task,
    2525                        associatedAssets: Asset,
Note: See TracChangeset for help on using the changeset viewer.