Fix builtin homonym linter errors
This commit is contained in:
parent
c5c074903d
commit
758dd9e70f
18 changed files with 52 additions and 38 deletions
|
@ -10,7 +10,7 @@ has error_messages => sub {
|
|||
};
|
||||
};
|
||||
|
||||
sub index {
|
||||
sub idx {
|
||||
my $c = shift;
|
||||
|
||||
my $validation = $c->validation;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package Pear::LocalLoop::Controller::Api::V1::Organisation::Pies;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
sub index {
|
||||
sub idx {
|
||||
my $c = shift;
|
||||
|
||||
my $entity = $c->stash->{api_user}->entity;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package Pear::LocalLoop::Controller::Api::V1::Organisation::Snippets;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
sub index {
|
||||
sub idx {
|
||||
my $c = shift;
|
||||
|
||||
my $entity = $c->stash->{api_user}->entity;
|
||||
|
|
Reference in a new issue