Move plugin to voip folder

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

View File

@ -18,7 +18,7 @@
# limitations under the License. # limitations under the License.
# #
package apps::3cx::restapi::plugin; package apps::voip::3cx::restapi::plugin;
use strict; use strict;
use warnings; use warnings;
@ -32,10 +32,10 @@ sub new {
$self->{version} = '1.0'; $self->{version} = '1.0';
%{$self->{modes}} = ( %{$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; return $self;
} }

View File

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

View File

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