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/Peering/RuleAPI.pm

46 lines
789 B

package NGCP::Panel::Form::Peering::RuleAPI;
use HTML::FormHandler::Moose;
extends 'NGCP::Panel::Form::Peering::Rule';
has_field 'group_id' => (
type => 'PosInteger',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The peering group this rule belongs to.']
},
);
has_block 'fields' => (
tag => 'div',
class => [qw/modal-body/],
render_list => [qw/group_id callee_prefix callee_pattern caller_pattern description enabled/],
);
1;
__END__
=head1 NAME
NGCP::Panel::Form::Peering::RuleAPI
=head1 DESCRIPTION
-
=head1 METHODS
=head1 AUTHOR
Irina Peshinskaya
=head1 LICENSE
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
# vim: set tabstop=4 expandtab: