Skip to content

Commit

Permalink
check for marked as deleted (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
mabiede authored Nov 24, 2023
1 parent 073cc5e commit f850b4a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pool/app/waiting_list/repo/repo.ml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ module Sql = struct
FROM pool_assignments
INNER JOIN pool_sessions ON pool_assignments.session_uuid = pool_sessions.uuid
AND pool_sessions.experiment_uuid = UNHEX(REPLACE($1, '-', ''))
WHERE pool_assignments.contact_uuid = user_users.uuid)
WHERE pool_assignments.contact_uuid = user_users.uuid
AND pool_assignments.marked_as_deleted IS NULL)
|sql}
in
let dyn =
Expand Down

0 comments on commit f850b4a

Please sign in to comment.