Skip to content

Commit a04b805

Browse files
committed
fix: incorrect description for summit ID
1 parent 143a9fd commit a04b805

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

app/Http/Controllers/Apis/Protected/Summit/OAuth2SummitAttendeesApiController.php

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public function __construct
157157
SummitScopes::ReadAllSummitData,
158158
]]],
159159
parameters: [
160-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
160+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
161161
new OA\Parameter(name: 'expand', in: 'query', required: false, description: 'Expand relationships (extra_questions, tickets, presentation_votes, ticket_types, allowed_access_levels, allowed_features, tags)', schema: new OA\Schema(type: 'string')),
162162
],
163163
responses: [
@@ -213,7 +213,7 @@ public function getOwnAttendee($summit_id)
213213
SummitScopes::ReadAllSummitData,
214214
]]],
215215
parameters: [
216-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
216+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
217217
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
218218
new OA\Parameter(name: 'expand', in: 'query', required: false, description: 'Expand relationships', schema: new OA\Schema(type: 'string')),
219219
],
@@ -264,7 +264,7 @@ public function getAttendee($summit_id, $attendee_id)
264264
SummitScopes::ReadAllSummitData,
265265
]]],
266266
parameters: [
267-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
267+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
268268
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
269269
],
270270
responses: [
@@ -316,7 +316,7 @@ public function getAttendeeSchedule($summit_id, $attendee_id)
316316
SummitScopes::WriteSummitData,
317317
]]],
318318
parameters: [
319-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
319+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
320320
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
321321
new OA\Parameter(name: 'event_id', in: 'path', required: true, description: 'Event ID', schema: new OA\Schema(type: 'integer')),
322322
],
@@ -365,7 +365,7 @@ public function addEventToAttendeeSchedule($summit_id, $attendee_id, $event_id)
365365
SummitScopes::WriteSummitData,
366366
]]],
367367
parameters: [
368-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
368+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
369369
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
370370
new OA\Parameter(name: 'event_id', in: 'path', required: true, description: 'Event ID', schema: new OA\Schema(type: 'integer')),
371371
],
@@ -416,7 +416,7 @@ public function removeEventFromAttendeeSchedule($summit_id, $attendee_id, $event
416416
SummitScopes::DeleteMyRSVP,
417417
]]],
418418
parameters: [
419-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
419+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
420420
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
421421
new OA\Parameter(name: 'event_id', in: 'path', required: true, description: 'Event ID', schema: new OA\Schema(type: 'integer')),
422422
],
@@ -472,7 +472,7 @@ public function deleteEventRSVP($summit_id, $attendee_id, $event_id)
472472
SummitScopes::WriteSummitData,
473473
]]],
474474
parameters: [
475-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
475+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
476476
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID or "me"', schema: new OA\Schema(type: 'string')),
477477
new OA\Parameter(name: 'event_id', in: 'path', required: true, description: 'Event ID', schema: new OA\Schema(type: 'integer')),
478478
],
@@ -504,7 +504,7 @@ public function checkingAttendeeOnEvent($id, $attendee_id, $event_id)
504504
SummitScopes::ReadAllSummitData,
505505
]]],
506506
parameters: [
507-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
507+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
508508
new OA\Parameter(name: 'page', in: 'query', required: false, description: 'Page number', schema: new OA\Schema(type: 'integer', default: 1)),
509509
new OA\Parameter(name: 'per_page', in: 'query', required: false, description: 'Items per page', schema: new OA\Schema(type: 'integer', default: 10, maximum: 100)),
510510
new OA\Parameter(name: 'filter', in: 'query', required: false, description: 'Filter by id, first_name, last_name, full_name, company, email, member_id, ticket_type, badge_type, status, has_member, has_tickets, etc.', schema: new OA\Schema(type: 'string')),
@@ -684,7 +684,7 @@ function () {
684684
SummitScopes::ReadAllSummitData,
685685
]]],
686686
parameters: [
687-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
687+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
688688
new OA\Parameter(name: 'filter', in: 'query', required: false, description: 'Filter by id, first_name, last_name, full_name, company, email, member_id, ticket_type, badge_type, status, has_member, has_tickets, etc.', schema: new OA\Schema(type: 'string')),
689689
new OA\Parameter(name: 'order', in: 'query', required: false, description: 'Order by first_name, last_name, email, company, id, status, etc.', schema: new OA\Schema(type: 'string')),
690690
],
@@ -837,7 +837,7 @@ function () {
837837
SummitScopes::WriteAttendeesData,
838838
]]],
839839
parameters: [
840-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
840+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
841841
],
842842
requestBody: new OA\RequestBody(
843843
required: true,
@@ -928,7 +928,7 @@ public function addAttendee($summit_id)
928928
SummitScopes::WriteAttendeesData,
929929
]]],
930930
parameters: [
931-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
931+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
932932
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
933933
],
934934
responses: [
@@ -973,7 +973,7 @@ public function deleteAttendee($summit_id, $attendee_id)
973973
SummitScopes::WriteAttendeesData,
974974
]]],
975975
parameters: [
976-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
976+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
977977
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
978978
],
979979
requestBody: new OA\RequestBody(
@@ -1068,7 +1068,7 @@ public function updateAttendee($summit_id, $attendee_id)
10681068
SummitScopes::WriteAttendeesData,
10691069
]]],
10701070
parameters: [
1071-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
1071+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
10721072
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
10731073
],
10741074
requestBody: new OA\RequestBody(
@@ -1157,7 +1157,7 @@ public function addAttendeeTicket($summit_id, $attendee_id)
11571157
SummitScopes::WriteAttendeesData,
11581158
]]],
11591159
parameters: [
1160-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
1160+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
11611161
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
11621162
new OA\Parameter(name: 'ticket_id', in: 'path', required: true, description: 'Ticket ID', schema: new OA\Schema(type: 'integer')),
11631163
],
@@ -1202,7 +1202,7 @@ public function deleteAttendeeTicket($summit_id, $attendee_id, $ticket_id)
12021202
SummitScopes::WriteAttendeesData,
12031203
]]],
12041204
parameters: [
1205-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
1205+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
12061206
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
12071207
new OA\Parameter(name: 'ticket_id', in: 'path', required: true, description: 'Ticket ID', schema: new OA\Schema(type: 'integer')),
12081208
new OA\Parameter(name: 'other_member_id', in: 'path', required: true, description: 'Target Member ID', schema: new OA\Schema(type: 'integer')),
@@ -1261,7 +1261,7 @@ public function reassignAttendeeTicketByMember($summit_id, $attendee_id, $ticket
12611261
SummitScopes::WriteAttendeesData,
12621262
]]],
12631263
parameters: [
1264-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
1264+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
12651265
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
12661266
new OA\Parameter(name: 'ticket_id', in: 'path', required: true, description: 'Ticket ID', schema: new OA\Schema(type: 'integer')),
12671267
],
@@ -1336,7 +1336,7 @@ protected function getSummitRepository(): ISummitRepository
13361336
SummitScopes::WriteAttendeesData,
13371337
]]],
13381338
parameters: [
1339-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
1339+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
13401340
new OA\Parameter(name: 'filter', in: 'query', required: false, description: 'Filter attendees', schema: new OA\Schema(type: 'string')),
13411341
],
13421342
requestBody: new OA\RequestBody(
@@ -1488,7 +1488,7 @@ public function send($summit_id)
14881488
SummitScopes::DoVirtualCheckIn,
14891489
]]],
14901490
parameters: [
1491-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
1491+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
14921492
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
14931493
],
14941494
responses: [
@@ -1532,7 +1532,7 @@ public function doVirtualCheckin($summit_id, $attendee_id)
15321532
SummitScopes::ReadAllSummitData,
15331533
]]],
15341534
parameters: [
1535-
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID or slug', schema: new OA\Schema(type: 'string')),
1535+
new OA\Parameter(name: 'id', in: 'path', required: true, description: 'Summit ID', schema: new OA\Schema(type: 'string')),
15361536
new OA\Parameter(name: 'attendee_id', in: 'path', required: true, description: 'Attendee ID', schema: new OA\Schema(type: 'integer')),
15371537
new OA\Parameter(name: 'expand', in: 'query', required: false, description: 'Expand relationships', schema: new OA\Schema(type: 'string')),
15381538
],

0 commit comments

Comments
 (0)