Skip to content

Commit 0426fe9

Browse files
committed
chore: add operationId
1 parent 94b3fe5 commit 0426fe9

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public function __construct
7979
#[OA\Get(
8080
path: '/api/v1/summits/{id}/payment-gateway-profiles',
8181
summary: 'Get all payment gateway profiles for a summit',
82+
operationId: 'getAllPaymentGatewayProfiles',
8283
description: 'Retrieves a paginated list of payment gateway profiles configured for a specific summit. Payment profiles manage payment processing for registrations and bookable rooms.',
8384
x: [
8485
'required-groups' => [
@@ -155,6 +156,7 @@ public function __construct
155156
#[OA\Get(
156157
path: '/api/v1/summits/{id}/payment-gateway-profiles/{payment_profile_id}',
157158
summary: 'Get a payment gateway profile by ID',
159+
operationId: 'getPaymentGatewayProfile',
158160
description: 'Retrieves detailed information about a specific payment gateway profile.',
159161
x: [
160162
'required-groups' => [
@@ -204,6 +206,7 @@ public function __construct
204206
#[OA\Post(
205207
path: '/api/v1/summits/{id}/payment-gateway-profiles',
206208
summary: 'Create a new payment gateway profile',
209+
operationId: 'createPaymentGatewayProfile',
207210
description: 'Creates a new payment gateway profile for the summit. Supports Stripe and LawPay providers.',
208211
x: [
209212
'required-groups' => [
@@ -252,6 +255,7 @@ public function __construct
252255
#[OA\Put(
253256
path: '/api/v1/summits/{id}/payment-gateway-profiles/{payment_profile_id}',
254257
summary: 'Update a payment gateway profile',
258+
operationId: 'updatePaymentGatewayProfile',
255259
description: 'Updates an existing payment gateway profile.',
256260
x: [
257261
'required-groups' => [
@@ -307,6 +311,7 @@ public function __construct
307311
#[OA\Delete(
308312
path: '/api/v1/summits/{id}/payment-gateway-profiles/{payment_profile_id}',
309313
summary: 'Delete a payment gateway profile',
314+
operationId: 'deletePaymentGatewayProfile',
310315
description: 'Deletes an existing payment gateway profile from the summit.',
311316
x: [
312317
'required-groups' => [

0 commit comments

Comments
 (0)