Bugtracker: Add support for commits.
This commit is contained in:
@ -49,8 +49,9 @@ def configure(advanced):
|
||||
else:
|
||||
return repeatdelay
|
||||
|
||||
output("Each of the next 3 questions can be set per-channel with the '@config channel' command.")
|
||||
output("Each of the next 4 questions can be set per-channel with the '@config channel' command.")
|
||||
bugSnarfer = yn("Enable detecting bug numbers and URLs in all channels?", default=Bugtracker.bugSnarfer._default)
|
||||
commitSnarfer = yn("Enable detecting commit hashes and URLs in all channels?", default=Bugtracker.commitSnarfer._default)
|
||||
cveSnarfer = yn("Enable detecting CVE numbers and URLs in all channels?", default=Bugtracker.cveSnarfer._default)
|
||||
oopsSnarfer = yn("Enable detecting Launchpad OOPS IDs in all channels?", default=Bugtracker.oopsSnarfer._default)
|
||||
if advanced:
|
||||
@ -72,6 +73,7 @@ def configure(advanced):
|
||||
saveDiscoveredTrackers = yn("Save automatically discovered trackers to configuration?", default=Bugtracker.saveDiscoveredTrackers._default)
|
||||
|
||||
Bugtracker.bugSnarfer.setValue(bugSnarfer)
|
||||
Bugtracker.commitSnarfer.setValue(commitSnarfer)
|
||||
Bugtracker.cveSnarfer.setValue(cveSnarfer)
|
||||
Bugtracker.oopsSnarfer.setValue(oopsSnarfer)
|
||||
Bugtracker.replyNoBugtracker.setValue(replyNoBugtracker)
|
||||
@ -90,6 +92,11 @@ conf.registerChannelValue(Bugtracker, 'bugSnarfer',
|
||||
enabled, such that any bugtracker URLs and bug ### seen in the channel
|
||||
will have their information reported into the channel."""))
|
||||
|
||||
conf.registerChannelValue(Bugtracker, 'commitSnarfer',
|
||||
registry.Boolean(False, """Determines whether the commit snarfer will be
|
||||
enabled, such that any commit URLs and commit ### seen in the channel
|
||||
will have their information reported into the channel."""))
|
||||
|
||||
conf.registerChannelValue(Bugtracker, 'cveSnarfer',
|
||||
registry.Boolean(False, """Determines whether the CVE snarfer will be
|
||||
enabled, such that any CVE URLs and CVE-????-???? seen in the channel
|
||||
|
Reference in New Issue
Block a user