Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package MetaCPAN::Web::API::RequestInfo::Orchestrator;
package MetaCPAN::Web::API::ReleaseInfo::Orchestrator;
use Moo;
use List::Util qw( max );
use namespace::clean;
Expand Down
6 changes: 3 additions & 3 deletions lib/MetaCPAN/Web/Model/ReleaseInfo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ extends 'Catalyst::Model';

use Future ();
use List::Util qw( all );
use MetaCPAN::Web::API::RequestInfo::Orchestrator ();
use MetaCPAN::Web::API::ReleaseInfo::Orchestrator ();
use Ref::Util qw( is_hashref );
use URI ();
use URI::Escape qw( uri_escape uri_unescape );
Expand Down Expand Up @@ -37,7 +37,7 @@ sub ACCEPT_CONTEXT {
sub via_dist {
my ( $self, $dist ) = @_;
$self->_fetch(
MetaCPAN::Web::API::RequestInfo::Orchestrator->new(
MetaCPAN::Web::API::ReleaseInfo::Orchestrator->new(
model => $self->_release,
dist => $dist,
),
Expand All @@ -47,7 +47,7 @@ sub via_dist {
sub via_release {
my ( $self, $author, $release_name ) = @_;
$self->_fetch(
MetaCPAN::Web::API::RequestInfo::Orchestrator->new(
MetaCPAN::Web::API::ReleaseInfo::Orchestrator->new(
model => $self->_release,
author => $author,
release => $release_name,
Expand Down
Loading