This commit is contained in:
Rumperuu 2021-03-20 23:26:52 +00:00
parent bec21ff3e0
commit a0dd7dd174
46 changed files with 138 additions and 139 deletions

View file

@ -10,7 +10,7 @@ sub run {
csv_file => $filename,
schema => $self->app->schema
)->import_csv;
return 1;
}

View file

@ -10,7 +10,7 @@ sub run {
csv_file => $filename,
schema => $self->app->schema
)->import_csv;
return 1;
}

View file

@ -11,7 +11,7 @@ sub run {
schema => $self->app->schema,
target_entity_id => $entity_id,
)->import_csv;
return 1;
}

View file

@ -30,7 +30,7 @@ sub run {
}
}
}
return 1;
}

View file

@ -7,7 +7,7 @@ sub run {
my $leaderboard_rs = $self->app->schema->resultset('Leaderboard');
$leaderboard_rs->recalculate_all;
return 1;
}

View file

@ -8,7 +8,7 @@ sub run {
for my $arg (@args) {
$self->job->app->log->debug($arg);
}
return 1;
}