Ignore:
Timestamp:
6 May 2009, 06:50:31 (15 years ago)
Author:
uli
Message:

Let Account implement IUserAccount.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • waeup/branches/ulif-rewrite/src/waeup/authentication.py

    r4091 r4109  
    1313from zope.component import getUtility
    1414from zope.interface import Interface
    15 from waeup.interfaces import IWAeUPObject
     15from waeup.interfaces import IWAeUPObject, IUserAccount
    1616from waeup.viewlets import Index, MainArea, LeftSidebar
    1717import waeup.permissions
     
    7777
    7878class Account(grok.Model):
     79    grok.implements(IUserAccount)
     80   
    7981    def __init__(self, name, password, title=None, description=None):
    8082        self.name = name
Note: See TracChangeset for help on using the changeset viewer.