app/soc/models/user.py
changeset 2345 f78caf12f32d
parent 1650 51b5bc38522c
child 2350 a6764395c7e9
equal deleted inserted replaced
2344:621252e2cc18 2345:f78caf12f32d
    69   #: of any Melange application.
    69   #: of any Melange application.
    70   account = db.UserProperty(required=True,
    70   account = db.UserProperty(required=True,
    71       verbose_name=ugettext('User account'))
    71       verbose_name=ugettext('User account'))
    72   account.help_text = ugettext(
    72   account.help_text = ugettext(
    73       'A valid Google Account.')
    73       'A valid Google Account.')
       
    74   
       
    75   #: Google Account unique user id
       
    76   user_id = db.StringProperty(required=True)
    74 
    77 
    75   #: A list (possibly empty) of former Google Accounts associated with
    78   #: A list (possibly empty) of former Google Accounts associated with
    76   #: this User.
    79   #: this User.
    77   former_accounts = db.ListProperty(users.User)
    80   former_accounts = db.ListProperty(users.User)
    78 
    81