-
Notifications
You must be signed in to change notification settings - Fork 2
feat(speakers): add has_pending_presentations filter for speakers and submitters #562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -251,7 +251,7 @@ public function __construct | |
| ), | ||
| new OA\Parameter( | ||
| name: 'filter', | ||
| description: 'Filter by id, not_id, first_name, last_name, email, full_name, member_id, member_user_external_id, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type. Operands supported: == (equal), @@ (contains), =@ (starts with).', | ||
| description: 'Filter by id, not_id, first_name, last_name, email, full_name, member_id, member_user_external_id, has_pending_presentations, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type. Operands supported: == (equal), @@ (contains), =@ (starts with).', | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @romanetar The earlier CodeRabbit thread on this line was resolved as "Addressed in commit 1dc2b14", but the description it targeted — the protected |
||
| in: 'query', | ||
| required: false, | ||
| schema: new OA\Schema(type: 'string') | ||
|
|
@@ -311,6 +311,7 @@ function () { | |
| 'full_name' => ['=@', '@@', '=='], | ||
| 'member_id' => ['=='], | ||
| 'member_user_external_id' => ['=='], | ||
| 'has_pending_presentations' => ['=='], | ||
| 'has_accepted_presentations' => ['=='], | ||
| 'has_alternate_presentations' => ['=='], | ||
| 'has_rejected_presentations' => ['=='], | ||
|
|
@@ -336,6 +337,7 @@ function () { | |
| 'full_name' => 'sometimes|string', | ||
| 'member_id' => 'sometimes|integer', | ||
| 'member_user_external_id' => 'sometimes|integer', | ||
| 'has_pending_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_accepted_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_alternate_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_rejected_presentations' => 'sometimes|string|in:true,false', | ||
|
|
@@ -411,7 +413,7 @@ function ($page, $per_page, $filter, $order, $applyExtraFilters) use ($summit) { | |
| ), | ||
| new OA\Parameter( | ||
| name: 'filter', | ||
| description: 'Filter query (supports multiple operators). Filterable fields: id, not_id, first_name, last_name, email, full_name, member_id, member_user_external_id, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type.', | ||
| description: 'Filter query (supports multiple operators). Filterable fields: id, not_id, first_name, last_name, email, full_name, member_id, member_user_external_id, has_pending_presentations, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type.', | ||
| in: 'query', | ||
| required: false, | ||
| schema: new OA\Schema(type: 'string') | ||
|
|
@@ -451,6 +453,7 @@ public function getSpeakersActivitiesCount($summit_id) | |
| 'full_name' => ['=@', '@@', '=='], | ||
| 'member_id' => ['=='], | ||
| 'member_user_external_id' => ['=='], | ||
| 'has_pending_presentations' => ['=='], | ||
| 'has_accepted_presentations' => ['=='], | ||
| 'has_alternate_presentations' => ['=='], | ||
| 'has_rejected_presentations' => ['=='], | ||
|
|
@@ -477,6 +480,7 @@ public function getSpeakersActivitiesCount($summit_id) | |
| 'full_name' => 'sometimes|string', | ||
| 'member_id' => 'sometimes|integer', | ||
| 'member_user_external_id' => 'sometimes|integer', | ||
| 'has_pending_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_accepted_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_alternate_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_rejected_presentations' => 'sometimes|string|in:true,false', | ||
|
|
@@ -529,7 +533,7 @@ public function getSpeakersActivitiesCount($summit_id) | |
| ), | ||
| new OA\Parameter( | ||
| name: 'filter', | ||
| description: 'Filter by id, not_id, first_name, last_name, email, full_name, member_id, member_user_external_id, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type. Operands supported: == (equal), @@ (contains), =@ (starts with).', | ||
| description: 'Filter by id, not_id, first_name, last_name, email, full_name, member_id, member_user_external_id, has_pending_presentations, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type. Operands supported: == (equal), @@ (contains), =@ (starts with).', | ||
| in: 'query', | ||
| required: false, | ||
| schema: new OA\Schema(type: 'string') | ||
|
|
@@ -592,6 +596,7 @@ function () { | |
| 'full_name' => ['=@', '@@', '=='], | ||
| 'member_id' => ['=='], | ||
| 'member_user_external_id' => ['=='], | ||
| 'has_pending_presentations' => ['=='], | ||
| 'has_accepted_presentations' => ['=='], | ||
| 'has_alternate_presentations' => ['=='], | ||
| 'has_rejected_presentations' => ['=='], | ||
|
|
@@ -617,6 +622,7 @@ function () { | |
| 'full_name' => 'sometimes|string', | ||
| 'member_id' => 'sometimes|integer', | ||
| 'member_user_external_id' => 'sometimes|integer', | ||
| 'has_pending_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_accepted_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_alternate_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_rejected_presentations' => 'sometimes|string|in:true,false', | ||
|
|
@@ -3189,7 +3195,7 @@ public function deleteSpeakerBigPhoto($speaker_id) | |
| ), | ||
| new OA\Parameter( | ||
| name: 'filter', | ||
| description: 'Filter speakers by id, first_name, last_name, email, full_name, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type', | ||
| description: 'Filter speakers by id, first_name, last_name, email, full_name, has_pending_presentations, has_accepted_presentations, has_alternate_presentations, has_rejected_presentations, presentations_track_id, presentations_track_group_id, presentations_selection_plan_id, presentations_type_id, presentations_title, presentations_abstract, presentations_submitter_full_name, presentations_submitter_email, has_media_upload_with_type, has_not_media_upload_with_type', | ||
| in: 'query', | ||
| required: false, | ||
| schema: new OA\Schema(type: 'string') | ||
|
|
@@ -3252,6 +3258,7 @@ public function send($summit_id) | |
| 'last_name' => ['=@', '@@', '=='], | ||
| 'email' => ['=@', '@@', '=='], | ||
| 'full_name' => ['=@', '@@', '=='], | ||
| 'has_pending_presentations' => ['=='], | ||
| 'has_accepted_presentations' => ['=='], | ||
| 'has_alternate_presentations' => ['=='], | ||
| 'has_rejected_presentations' => ['=='], | ||
|
|
@@ -3278,6 +3285,7 @@ public function send($summit_id) | |
| 'last_name' => 'sometimes|string', | ||
| 'email' => 'sometimes|string', | ||
| 'full_name' => 'sometimes|string', | ||
| 'has_pending_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_accepted_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_alternate_presentations' => 'sometimes|string|in:true,false', | ||
| 'has_rejected_presentations' => 'sometimes|string|in:true,false', | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.