Finish basic notifications system and verify it works for the "password_required" notification.

This commit is contained in:
Joseph Schorr 2014-03-12 16:05:32 -04:00
parent f186fa2888
commit 578add3b9e
7 changed files with 128 additions and 12 deletions

View file

@ -266,6 +266,9 @@ def populate_database():
new_user_4.verified = True
new_user_4.save()
new_user_5 = model.create_user('unverified', 'password', 'no5@thanks.com')
new_user_5.save()
reader = model.create_user('reader', 'password', 'no1@thanks.com')
reader.verified = True
reader.save()