bgneal@522: """ bgneal@522: Celery tasks for the forums application. bgneal@522: bgneal@522: """ bgneal@522: from celery.task import task bgneal@522: bgneal@522: import forums.latest bgneal@522: bgneal@522: bgneal@522: @task bgneal@522: def new_post_task(post_id): bgneal@522: """ bgneal@522: This task performs new post processing on a Celery task. bgneal@522: bgneal@522: """ bgneal@522: forums.latest.process_new_post(post_id) bgneal@522: bgneal@522: bgneal@522: @task bgneal@522: def new_topic_task(topic_id): bgneal@522: """ bgneal@522: This task performs new topic processing on a Celery task. bgneal@522: bgneal@522: """ bgneal@522: forums.latest.process_new_topic(topic_id)