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/VoicemailRecordings.pm

42 lines
1.1 KiB

package NGCP::Panel::Role::API::VoicemailRecordings;
use Moose::Role;
use Sipwise::Base;
with 'NGCP::Panel::Role::API' => {
-alias =>{ item_rs => '_item_rs', },
-excludes => [ 'item_rs' ],
};
sub item_rs {
my ($self, $c) = @_;
my $item_rs = $c->model('DB')->resultset('voicemail_spool')->search({
duration => { '!=' => '' },
'voip_subscriber.id' => { '!=' => undef },
},{
join => { mailboxuser => { provisioning_voip_subscriber => 'voip_subscriber' } }
});
if($c->user->roles eq "admin") {
} elsif($c->user->roles eq "reseller") {
$item_rs = $item_rs->search({
'contact.reseller_id' => $c->user->reseller_id
},{
join => { mailboxuser => { provisioning_voip_subscriber => { voip_subscriber => { contract => 'contact' } } } }
});
}
return $item_rs;
}
sub get_form {
my ($self, $c) = @_;
return;
}
sub item_by_id {
my ($self, $c, $id) = @_;
my $item_rs = $self->item_rs($c);
return $item_rs->find($id);
}
1;
# vim: set tabstop=4 expandtab: