Ignore:
Timestamp:
Jan 29, 2009, 8:31:15 PM (15 years ago)
Author:
gav
Message:

Added login page and adjusted Person domain/views/controller and BootStrap?.
Add beforeInterceptor() to all controllers.
Added BaseController?.
Added adminmenubar adjust layout and css to suite.

File:
1 edited

Legend:

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

    r35 r40  
    22    String firstName
    33    String lastName
     4    String userId
     5    String password
    46    Integer employeeID
    57    boolean isActive = true
     
    1719        firstName(maxSize:50,blank:false)
    1820        lastName(maxSize:50,blank:false)
     21        userId(maxSize:8,unique:true)
     22        password(maxSize:8)
    1923        employeeID(blank:true, nullable:true)
    2024    }
Note: See TracChangeset for help on using the changeset viewer.