Mercurial > p > roundup > code
view website/issues/detectors/severityauditor.py @ 7092:1836e0ef7751
Add new security.txt
Add to index, remove security.txt from exclude list in website. Add
:orphan: to security-history.txt since it is only linked from
upgrading.txt.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 02 Dec 2022 22:30:12 -0500 |
| 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)
