diff options
author | mkanat%bugzilla.org <> | 2009-09-22 00:10:07 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-09-22 00:10:07 +0200 |
commit | be1c97006f52e07419aa1d17cdc25ac0a835441a (patch) | |
tree | a80eaba27e1453ff71a71c23c60e95e51f4e6c48 /Bugzilla | |
parent | 3e0d373be5b1736837e711e5983e704aa906cc06 (diff) | |
download | bugzilla-be1c97006f52e07419aa1d17cdc25ac0a835441a.tar.gz bugzilla-be1c97006f52e07419aa1d17cdc25ac0a835441a.tar.xz |
Bug 496855: Hooks for sanitycheck.cgi
Patch by Bradley Baetz <bbaetz@acm.org> r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Hook.pm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index 2eda8d856..42f3583c5 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -556,6 +556,34 @@ Params: =back +=head2 sanitycheck-check + +This hook allows for extra sanity checks to be added, for use by +F<sanitycheck.cgi>. + +Params: + +=over + +=item C<status> - a CODEREF that allows status messages to be displayed +to the user. (F<sanitycheck.cgi>'s C<Status>) + +=back + +=head2 sanitycheck-repair + +This hook allows for extra sanity check repairs to be made, for use by +F<sanitycheck.cgi>. + +Params: + +=over + +=item C<status> - a CODEREF that allows status messages to be displayed +to the user. (F<sanitycheck.cgi>'s C<Status>) + +=back + =head2 webservice This hook allows you to add your own modules to the WebService. (See |