You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
Due to this line, reviewers only show up if they have done a review.
Ideally in the future there is a way to see all assigned reviewers, but separate out from those who have done a review (i.e. implement the auditor role)
CREATE OR REPLACEviewreviewer_metricsASSELECTau.id reviewer_id
, au.name
, au.email email
, app.assessment_hurdle_id
, COUNT(*) FILTER (WHERE approved IS false) pending_amendment
, COUNT(*) FILTER (WHERE approved IS true) adjudicated
FROM application_evaluation ae
LEFT JOIN app_user au ONau.id= approver_id
LEFT JOIN application a ONa.id=ae.application_idLEFT JOIN applicant app onapp.id=a.applicant_idgroup BYau.id, au.name, au.email, app.assessment_hurdle_id;
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Due to this line, reviewers only show up if they have done a review.
Ideally in the future there is a way to see all assigned reviewers, but separate out from those who have done a review (i.e. implement the auditor role)
The text was updated successfully, but these errors were encountered: