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/Form/SubscriberCFTSimple.pm

19 lines
445 B

package NGCP::Panel::Form::SubscriberCFTSimple;
use HTML::FormHandler::Moose;
use HTML::FormHandler::Widget::Block::Bootstrap;
use Moose::Util::TypeConstraints;
extends 'NGCP::Panel::Form::SubscriberCFSimple';
has_field 'ringtimeout' => (
type => 'PosInteger',
required => 1,
label => 'after ring timeout',
);
has_block 'fields' => (
tag => 'div',
class => [qw(modal-body)],
render_list => [qw(destination ringtimeout)],
);
1;