Ignore:
Timestamp:
Jan 26, 2010, 4:46:01 PM (13 years ago)
Author:
duh
Message:
  • added development version of wizard subjects page and logic
  • modified some domain classes (again, who reverted them?) to implement Serializable
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/dbnp/studycapturing/Study.groovy

    r136 r138  
    99 * $Date$
    1010 */
    11 class Study {
     11class Study implements Serializable {
    1212        nimble.User owner
    1313        String title
     
    2121        Template template
    2222
    23         static hasMany = [      editors:                nimble.User,
    24                                 readers:                nimble.User,
    25                                 subjects:               Subject,
    26                                 groups:                 SubjectGroup,
    27                                 events:                 Event,
    28                                 samplingEvents: SamplingEvent
     23        static hasMany = [      editors: nimble.User,
     24                                                readers: nimble.User,
     25                                                subjects: Subject,
     26                                                groups: SubjectGroup,
     27                                                events: Event,
     28                                                samplingEvents: SamplingEvent
    2929        ]
    3030
Note: See TracChangeset for help on using the changeset viewer.