@bgoldstein add the following code to your List Page where configuration in List Page Properties.
"posted_by='". USER_ID . "' OR review_by='". REVIEWER_ID ."'"
where posted_by and review_by are fields in the table that contain the records and a similar field reviewer exists in the user table.
After that, add the following code in your /config.php file.
define('REVIEWER_ID',(isset($_SESSION[APP_ID.'user_data']) ? $_SESSION[APP_ID.'user_data']['reviewer'] : null ));