view website/issues/detectors/severityauditor.py @ 8301:3ba8078843db

Add "form" parameter for Date field method Allow the specification of a "form" parameter for Date fields to make the popup calendar work when the enclosing form has a name different from "itemSynopsis".
author Ralf Schlatterbeck <rsc@runtux.com>
date Wed, 19 Feb 2025 12:50:07 +0100
parents 0942fe89e82e
children
line wrap: on
line source


def init_severity(db, cl, nodeid, newvalues):
    """Make sure severity is set on new issues"""
    if 'severity' in newvalues and newvalues['severity']:
        return

    normal = db.severity.lookup('normal')
    newvalues['severity'] = normal

def init(db):
    db.issue.audit('create', init_severity)

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