app/soc/models/follower.py
changeset 1874 35b65c11d6a1
parent 1872 7b3ba4d80b35
equal deleted inserted replaced
1873:bbd4fa245285 1874:35b65c11d6a1
    43 
    43 
    44   #: Required property to tie a user to the entity it is following
    44   #: Required property to tie a user to the entity it is following
    45   user = db.ReferenceProperty(reference_class=soc.models.user.User,
    45   user = db.ReferenceProperty(reference_class=soc.models.user.User,
    46                               required=True, collection_name='following')
    46                               required=True, collection_name='following')
    47 
    47 
    48   pass