view forums/tasks.py @ 1166:130ac1e98cf4

More V3 forums tweaking. Adding attachments is working now. Adding a post via ajax is working. Still need to display attachments on posts.
author Brian Neal <bgneal@gmail.com>
date Sun, 20 Aug 2017 15:55:54 -0500
parents aeafbf3ecebf
children
line wrap: on
line source
"""
Celery tasks for the forums application.

"""
from __future__ import absolute_import

from celery import shared_task

import forums.latest


@shared_task
def new_post_task(post_id):
    """
    This task performs new post processing on a Celery task.

    """
    forums.latest.process_new_post(post_id)


@shared_task
def updated_post_task(post_id):
    """
    This task performs updated post processing on a Celery task.

    """
    forums.latest.process_updated_post(post_id)


@shared_task
def new_topic_task(topic_id):
    """
    This task performs new topic processing on a Celery task.

    """
    forums.latest.process_new_topic(topic_id)


@shared_task
def updated_topic_task(topic_id):
    """
    This task performs updated topic processing on a Celery task.

    """
    forums.latest.process_updated_topic(topic_id)