コード例 #1
0
def main():
    args = parse_args()
    load_config(args.conf_file)
    all_events = meta.Session.query(Event).all()

    for event in all_events:
        notify(event, database_only=True)

    meta.Session.commit()
コード例 #2
0
ファイル: replay_notifications.py プロジェクト: alkadis/vcv
def main():
    args = parse_args()
    load_config(args.conf_file)
    all_events = meta.Session.query(Event).all()

    for event in all_events:
        notify(event, database_only=True)

    meta.Session.commit()
コード例 #3
0
def process(event):
    notification.notify(event)
コード例 #4
0
ファイル: __init__.py プロジェクト: dwt/adhocracy
def process(event):
    notification.notify(event)