mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix #105 Return 404 and not 403 on POST...
This commit is contained in:
parent
171f55e42e
commit
1d6eab83b9
2 changed files with 2 additions and 2 deletions
|
|
@ -83,6 +83,6 @@ class CreationTokenController extends Controller
|
|||
return $accountCreationToken;
|
||||
}
|
||||
|
||||
return abort(403);
|
||||
return abort(404);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ JSON parameters:
|
|||
<span class="badge badge-success">Public</span>
|
||||
Create an `account_creation_token` using an `account_creation_request_token`.
|
||||
Return an `account_creation_token`.
|
||||
Return `403` if the `account_creation_request_token` provided is not valid or expired otherwise.
|
||||
Return `404` if the `account_creation_request_token` provided is not valid or expired otherwise.
|
||||
|
||||
JSON parameters:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue