Bug 396243: Allow extensions (aka plugins) to extend the WebService interface

This also includes the first checkin of the example plugin.
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=ghendricks, a=mkanat


git-svn-id: svn://10.0.0.236/trunk@237895 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org
2007-10-19 07:58:52 +00:00
parent c44f0fe76e
commit 106f5bf96d
5 changed files with 55 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
use strict;
use warnings;
use Bugzilla;
my $dispatch = Bugzilla->hook_args->{dispatch};
$dispatch->{Example} = "extensions::example::lib::WSExample";