From 8bcfeffb11387236190781e64f6b85706ae7bd44 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 25 Aug 2021 12:15:47 +1000 Subject: [PATCH] Remove redundant doc blocks --- .../Auth/ForgotPasswordController.php | 55 ------------------- 1 file changed, 55 deletions(-) diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php index 8bfed78cf0a3..4d29e66e1518 100644 --- a/app/Http/Controllers/Auth/ForgotPasswordController.php +++ b/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -44,61 +44,6 @@ class ForgotPasswordController extends Controller } /** - * Password Reset. - * - * - * @OA\Post( - * path="/api/v1/reset_password", - * operationId="reset_password", - * tags={"reset_password"}, - * summary="Attempts to reset the users password", - * description="Resets a users email password", - * @OA\Parameter(ref="#/components/parameters/X-Api-Secret"), - * @OA\Parameter(ref="#/components/parameters/X-Requested-With"), - * @OA\RequestBody( - * description="Password reset email", - * required=true, - * @OA\MediaType( - * mediaType="application/json", - * @OA\Schema( - * type="object", - * @OA\Property( - * property="email", - * description="The user email address", - * type="string", - * ) - * ) - * ) - * ), - * @OA\Response( - * response=201, - * description="The Reset response", - * @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"), - * @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"), - * @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"), - * @OA\JsonContent( - * @OA\Items( - * type="string", - * example="Reset link send to your email.", - * ) - * ), - * ), - * @OA\Response( - * response=401, - * description="Validation error", - * @OA\JsonContent( - * @OA\Items( - * type="string", - * example="Unable to send password reset link", - * ), - * ), - * ), - * @OA\Response( - * response="default", - * description="Unexpected Error", - * @OA\JsonContent(ref="#/components/schemas/Error"), - * ), - * ) * @param Request $request * @return \Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse * @throws \Illuminate\Validation\ValidationException