diff options
author | mkanat%bugzilla.org <> | 2007-10-19 14:58:48 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-10-19 14:58:48 +0200 |
commit | 77761cd6861490775d0d617f962ad213019517d9 (patch) | |
tree | dd220626d75c0c22afb2c2bd25c5d06a53f5d260 /extensions/example/lib | |
parent | 415e32d463bbb881d991d886ddba6f859669c098 (diff) | |
download | bugzilla-77761cd6861490775d0d617f962ad213019517d9.tar.gz bugzilla-77761cd6861490775d0d617f962ad213019517d9.tar.xz |
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
Diffstat (limited to 'extensions/example/lib')
-rw-r--r-- | extensions/example/lib/WSExample.pm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extensions/example/lib/WSExample.pm b/extensions/example/lib/WSExample.pm new file mode 100644 index 000000000..05975b874 --- /dev/null +++ b/extensions/example/lib/WSExample.pm @@ -0,0 +1,10 @@ +package extensions::example::lib::WSExample; +use strict; +use warnings; + +use base qw(Bugzilla::WebService); + +# This can be called as Example.hello() from XML-RPC. +sub hello { return 'Hello!'; } + +1; |