Mercurial > public > sg101
view accounts/tasks.py @ 610:838eb32383a9
Show member flags on forum index page.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 03 Aug 2012 20:30:58 -0500 (2012-08-04) |
parents | ee87ea74d46b |
children | aeafbf3ecebf |
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)