Ignore:
Timestamp:
Dec 4, 2009, 2:05:27 PM (14 years ago)
Author:
gav
Message:

Replace personService.currentUser() with the more groovy personService.getCurrentUser() so that personService.currentUser can be called.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/services/PersonService.groovy

    r198 r216  
    1313    * @returns The current user or the 'system' person (Person #1) if userDomain() is not active.
    1414    */
    15     def currentUser() {
     15    def getCurrentUser() {
    1616        if(authenticateService.userDomain()) {
    1717            return Person.get(authenticateService.userDomain().id)
Note: See TracChangeset for help on using the changeset viewer.