Mercurial > public > sg101
view gpp/accounts/tasks.py @ 547:15fad6df98d9
Update requirements.txt & .hgignore.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 13 Jan 2012 20:20:54 -0600 |
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)