You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/lib/NGCP/Panel/Controller/API/ConversationsItem.pm

21 lines
420 B

package NGCP::Panel::Controller::API::ConversationsItem;
use Sipwise::Base;
use NGCP::Panel::Utils::Generic qw(:all);
use parent qw/NGCP::Panel::Role::EntitiesItem NGCP::Panel::Role::API::Conversations/;
__PACKAGE__->set_config();
sub config_allowed_roles {
return [qw/admin reseller subscriberadmin subscriber/];
}
sub allowed_methods{
return [qw/GET OPTIONS HEAD/];
}
1;
# vim: set tabstop=4 expandtab: