mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Remove redundant doc blocks
This commit is contained in:
parent
aa0f1b3bdf
commit
8bcfeffb11
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user