Mercurial > public > sg101
annotate messages/tasks.py @ 645:99f7917702ca
Fix 081a88b3bfc8, javascript resize of forum images.
Commit 081a88b3bfc8 broke those pages that loaded forums.js but did not load
the imagesLoaded jQuery extension. Now we have arranged it so that only the
forums topic view loads imagesLoaded and put the resizing javascript inline.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 11 Mar 2013 15:30:25 -0500 |
parents | ee87ea74d46b |
children | aeafbf3ecebf |
rev | line source |
---|---|
bgneal@518 | 1 """ |
bgneal@518 | 2 Celery tasks for the messages application. |
bgneal@518 | 3 |
bgneal@518 | 4 """ |
bgneal@518 | 5 from celery.task import task |
bgneal@518 | 6 |
bgneal@518 | 7 |
bgneal@518 | 8 @task |
bgneal@518 | 9 def purge_messages(): |
bgneal@518 | 10 """ |
bgneal@518 | 11 Task to purge messages that have been deleted by both sender & receiver. |
bgneal@518 | 12 |
bgneal@518 | 13 """ |
bgneal@518 | 14 from messages.management.commands.purge_messages import Command |
bgneal@518 | 15 |
bgneal@518 | 16 command = Command() |
bgneal@518 | 17 command.execute() |