view gpp/messages/tasks.py @ 535:4021ea1045f7

Adding import commands for the 1.0 POTD & comments.
author Brian Neal <bgneal@gmail.com>
date Sat, 31 Dec 2011 21:34:17 +0000
parents 5171a5e9353b
children
line wrap: on
line source
"""
Celery tasks for the messages application.

"""
from celery.task import task


@task
def purge_messages():
    """
    Task to purge messages that have been deleted by both sender & receiver.

    """
    from messages.management.commands.purge_messages import Command

    command = Command()
    command.execute()