Custom Query (1174 matches)
Results (328 - 330 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #107 | fixed | Email verification and forgot password verification tokens should expire | ||
| Description |
Email verification should expire after 30 days and forgot password verification should expire after 7. Things that should be done:
You can set these fields via a timedelta: >>> import datetime >>> datetime.datetime.now() + datetime.timedelta(days=10) datetime.datetime(2011, 7, 4, 8, 41, 8, 502139) |
|||
| #12 | FIXED | Email verification for new users | ||
| Description |
New users should be requested email verification. Steps to make happen:
|
|||
| #277 | fixed | Enable "favoriting" of media | ||
| Description |
Users should be able to mark media entries as favorites by clicking a button/link in the entry detail view (and probably from gallery views as well). This change will likely require the creation of a new "UserFavorite" model with a structure like: {'user': user_id, 'media_entry': media_entry_id, 'created': datetime.datetime.now()} ...and also a new field on MediaEntry containing a count of UserFavorites for that entry (to avoid expensive queries to generate this number dynamically for every request). |
|||
