From 0803d69d332ffb6e2b8eb874abbc25dc971df277 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Fri, 12 Dec 2014 14:28:21 +0200 Subject: [PATCH] Include contest_name in us_entry list of contests --- lib/Gruntmaster/Data.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Gruntmaster/Data.pm b/lib/Gruntmaster/Data.pm index 3258c85..facc186 100644 --- a/lib/Gruntmaster/Data.pm +++ b/lib/Gruntmaster/Data.pm @@ -102,7 +102,7 @@ sub user_entry { my ($self, $id) = @_; my $user = $self->users->find($id, {columns => USER_PUBLIC_COLUMNS, prefetch => [qw/problem_statuses contest_statuses/]}); my @problems = map { {problem => $_->get_column('problem'), solved => $_->solved} } $user->problem_statuses; - my @contests = map { {contest => $_->get_column('contest'), rank => $_->rank, score => $_->score} } $user->contest_statuses; + my @contests = map { {contest => $_->contest->id, contest_name => $_->contest->name, rank => $_->rank, score => $_->score} } $user->contest_statuses->search(undef, {prefetch => 'contest'}); +{ $user->get_columns, problems => \@problems, contests => \@contests } } -- 2.30.2