From 8dd9e3d3b38af8fb08b1d3186bda014657bf856f Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Thu, 12 Feb 2015 16:34:36 +0200 Subject: [PATCH] Make jobs sent to pending contests private --- lib/Plack/App/Gruntmaster.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Plack/App/Gruntmaster.pm b/lib/Plack/App/Gruntmaster.pm index 6bc1f79..39928bc 100644 --- a/lib/Plack/App/Gruntmaster.pm +++ b/lib/Plack/App/Gruntmaster.pm @@ -244,6 +244,7 @@ sub dispatch_request{ my $source = $prog ? read_file $prog->path : $_{source_code}; unlink $prog->path if $prog; my $private = (problem->private && !$_{contest}) ? 1 : 0; + $private = 1 if contest->is_pending; my $newjob = db->jobs->create({ maybe contest => $_{contest}, private => $private, -- 2.39.2