Move plugin to voip folder

This commit is contained in:
CPbN 2019-04-08 08:57:39 +02:00
parent 420613a6ac
commit bbd5339f49
3 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::3cx::restapi::plugin;
package apps::voip::3cx::restapi::plugin;
use strict;
use warnings;
@ -32,10 +32,10 @@ sub new {
$self->{version} = '1.0';
%{$self->{modes}} = (
'status' => 'apps::3cx::restapi::mode::status',
'status' => 'apps::voip::3cx::restapi::mode::status',
);
$self->{custom_modes}{api} = 'apps::3cx::restapi::custom::api';
$self->{custom_modes}{api} = 'apps::voip::3cx::restapi::custom::api';
return $self;
}

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::3cx::restapi::custom::api;
package apps::voip::3cx::restapi::custom::api;
use base qw(centreon::plugins::mode);

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package apps::3cx::restapi::mode::status;
package apps::voip::3cx::restapi::mode::status;
use base qw(centreon::plugins::mode);