view website/issues/detectors/statusauditor.py @ 6120:370cc9052239

Remove phone property from schema. This makes the phone property inaccessible. We don't need or use the phone. See https://issues.roundup-tracker.org/issue2551082.
author John Rouillard <rouilj@ieee.org>
date Tue, 03 Mar 2020 21:00:38 -0500
parents 0942fe89e82e
children 13e8f188f8dd
line wrap: on
line source

def preset_new(db, cl, nodeid, newvalues):
    """ Make sure the status is set on new issues"""

    if 'status' in newvalues and newvalues['status']:
        return

    new = db.status.lookup('new')
    newvalues['status'] = new


def init(db):
    # fire before changes are made
    db.issue.audit('create', preset_new)

Roundup Issue Tracker: http://roundup-tracker.org/