diff --git a/app/controllers/reports/session_reports_controller.rb b/app/controllers/reports/session_reports_controller.rb index dbb73ee96..aad2fb894 100644 --- a/app/controllers/reports/session_reports_controller.rb +++ b/app/controllers/reports/session_reports_controller.rb @@ -334,7 +334,7 @@ def non_accepted_on_schedule people_sessions = SessionService.person_schedule .where("session_assignment_name in ('Moderator', 'Participant', 'Invisible')") - .where("con_state not in ('not_set', 'accepted')") + .where("con_state not in ('accepted')") .where("start_time is not null and room_id is not null") .order('name', 'start_time', 'title') diff --git a/app/javascript/reports/reports_screen.vue b/app/javascript/reports/reports_screen.vue index a58a418b6..57f2b399e 100644 --- a/app/javascript/reports/reports_screen.vue +++ b/app/javascript/reports/reports_screen.vue @@ -75,7 +75,7 @@
- Description: People with participant status other than "accepted" or "not_set" assigned to scheduled sessions, one line per person and session
+ Description: People with participant status other than "accepted" assigned to scheduled sessions, one line per person and session
Fields: Person name, published name, participant status, session title, area(s) of session, tags, admin labels
Session data included: all scheduled sessions
Person data included: moderators, participants, invisible participants with a participant status that is not "accepted" or "not_set"