Skip to content

Commit

Permalink
Don't encourage users to apply for F2 & P3
Browse files Browse the repository at this point in the history
Don't encourage users to apply for F2 and P3 as those require more
handholding and review.
  • Loading branch information
cpeel committed Apr 9, 2024
1 parent bfb89ba commit 947043e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pinc/gradual.inc
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,12 @@ function encourage_highest_round($username, $round_id = null)
return;
}

// pgdp-production: don't encourage proofreaders to apply to P3 or F2
// just yet, as we want to add checks against access_log first
if (in_array($round->id, ["P3", "F2"])) {
continue;
}

// They're already eligible but have not requested access, tell them.
$uao = $round->user_access($username);
if ($uao->all_minima_satisfied) {
Expand Down

0 comments on commit 947043e

Please sign in to comment.