Skip to content

Commit

Permalink
rename controller from ::WebLike to ::Web
Browse files Browse the repository at this point in the history
  • Loading branch information
jberger committed Nov 21, 2016
1 parent 7eb0f85 commit d7223e3
Showing 1 changed file with 5 additions and 1 deletion.
@@ -1,4 +1,4 @@
package MetaCPAN::Server::Controller::Search::WebLike;
package MetaCPAN::Server::Controller::Search::Web;

use strict;
use warnings;
Expand All @@ -9,6 +9,10 @@ BEGIN { extends 'MetaCPAN::Server::Controller' }

with 'MetaCPAN::Server::Role::JSONP';

# Kill default actions provided by our stupid Controller base class
sub get { }
sub all { }

sub simple : Chained('/search/index') : PathPart('simple') : Args(0) {
my ( $self, $c ) = @_;
my $args = $c->req->params;
Expand Down

0 comments on commit d7223e3

Please sign in to comment.