Parent: [b67bc4] (diff)

Child: [ddf08c] (diff)

Download this file

notification_tasks.py    8 lines (6 with data), 183 Bytes

1
2
3
4
5
6
7
from allura.lib.decorators import task
@task
def notify(n_id, ref_id, topic):
from allura import model as M
M.Mailbox.deliver(n_id, ref_id, topic)
M.Mailbox.fire_ready()