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/SubscriberProfile/ApiProfile.pm

25 lines
620 B

package NGCP::Panel::Form::SubscriberProfile::ApiProfile;
use HTML::FormHandler::Moose;
extends 'NGCP::Panel::Form::SubscriberProfile::Profile';
use Moose::Util::TypeConstraints;
has_field 'profile_set' => (
type => '+NGCP::Panel::Field::SubscriberProfileSet',
validate_when_empty => 1,
element_attr => {
rel => ['tooltip'],
title => ['The subscriber rofile set this profile belongs to.']
},
);
has_block 'fields' => (
tag => 'div',
class => [qw/modal-body/],
render_list => [qw/profile_set name description set_default attribute/],
);
1;
# vim: set tabstop=4 expandtab: