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

55 lines
991 B

package NGCP::Panel::Form::RewriteRule::RuleAPI;
use HTML::FormHandler::Moose;
extends 'NGCP::Panel::Form::RewriteRule::Rule';
has_field 'set_id' => (
type => 'PosInteger',
required => 1,
element_attr => {
rel => ['tooltip'],
title => ['The rewrite rule set this rule belongs to.']
},
);
has_field 'priority' => (
type => 'PosInteger',
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['The rewrite rule priority.']
},
);
has_block 'fields' => (
tag => 'div',
class => [qw/modal-body/],
render_list => [qw/set_id match_pattern replace_pattern description direction enabled priority field/],
);
1;
__END__
=head1 NAME
NGCP::Panel::Form::RewriteRule::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: