# HG changeset patch # User Todd Larsen # Date 1232474170 0 # Node ID ed494131f6e5dcc96bbcbf85c1da015f11f2143c # Parent 9dac40accd069ae6d2f26a237bc18d8ddb0f5ce5 This file should not have been included in r1428. Reverting... Patch by: Todd Larsen Review by: to-be-reviewed diff -r 9dac40accd06 -r ed494131f6e5 app/soc/models/role.py --- a/app/soc/models/role.py Tue Jan 20 17:53:36 2009 +0000 +++ b/app/soc/models/role.py Tue Jan 20 17:56:10 2009 +0000 @@ -75,14 +75,6 @@ user = db.ReferenceProperty(reference_class=soc.models.user.User, required=True, collection_name='roles') - #: field storing whether User has agreed to the Role-specific Terms of - #: Service. (Not a required field because some Roles may not have special - #: Terms of Service.) - agrees_to_tos = db.BooleanProperty( - verbose_name=ugettext_lazy('Agrees to ToS')) - agrees_to_tos.help_text = ugettext_lazy( - 'Indicates that the user agrees to the Terms of Service for this Role.') - #==================================================================== # (public) name information #====================================================================