mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Fix typo in ApiV1Controller
This commit is contained in:
parent
5b15f6f3b2
commit
05968fa135
1 changed files with 2 additions and 1 deletions
|
@ -92,7 +92,7 @@ class ApiV1Controller extends Controller
|
||||||
*
|
*
|
||||||
* @return \App\Transformer\Api\AccountTransformer
|
* @return \App\Transformer\Api\AccountTransformer
|
||||||
*/
|
*/
|
||||||
public function accountUpdateCredentials(Request, $request)
|
public function accountUpdateCredentials(Request $request)
|
||||||
{
|
{
|
||||||
abort_if(!$request->user(), 403);
|
abort_if(!$request->user(), 403);
|
||||||
|
|
||||||
|
@ -252,6 +252,7 @@ class ApiV1Controller extends Controller
|
||||||
'is_nsfw',
|
'is_nsfw',
|
||||||
'scope',
|
'scope',
|
||||||
'local',
|
'local',
|
||||||
|
'place_id',
|
||||||
'created_at',
|
'created_at',
|
||||||
'updated_at'
|
'updated_at'
|
||||||
)->whereProfileId($profile->id)
|
)->whereProfileId($profile->id)
|
||||||
|
|
Loading…
Reference in a new issue