assigns migration steps to User database objects

adds the migration_handler to the User db class, connecting the
migration steps in ../db/migrations.py to the migration code in
gmg_commands
This commit is contained in:
cfdv 2011-06-20 22:47:43 -05:00
parent 17bb7c388b
commit 0472653ee4

View File

@ -58,6 +58,8 @@ class User(Document):
'status': u'needs_email_verification',
'verification_key': lambda: unicode(uuid.uuid4()),
'is_admin': False}
migration_handler = migrations.UserMigration
def check_login(self, password):
"""