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/Role/API/ApplyRewrites.pm

27 lines
521 B

package NGCP::Panel::Role::API::ApplyRewrites;
use Moose::Role;
use Sipwise::Base;
with 'NGCP::Panel::Role::API' => {
-alias =>{ item_rs => '_item_rs', },
-excludes => [ 'item_rs' ],
};
use boolean qw(true);
use TryCatch;
use Data::HAL qw();
use Data::HAL::Link qw();
use HTTP::Status qw(:constants);
use NGCP::Panel::Form::RewriteRule::ApplyAPI;
sub item_rs {
}
sub get_form {
my ($self, $c) = @_;
return NGCP::Panel::Form::RewriteRule::ApplyAPI->new;
}
1;
# vim: set tabstop=4 expandtab: