view gpp/accounts/tasks.py @ 526:dd97341788fa

For #194, we no longer need the mailer application.
author Brian Neal <bgneal@gmail.com>
date Mon, 19 Dec 2011 01:21:09 +0000
parents e94570675664
children
line wrap: on
line source
"""
Celery tasks for the accounts application.

"""
from celery.task import task

from accounts.stats import update_user_stats


@task
def user_stats_task(user_id):
    """
    Run the update_user_stats() function on a new task.

    """
    update_user_stats(user_id)