mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update v1.1 api
This commit is contained in:
parent
6b2f6b3c22
commit
08ab19f0ea
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ class ApiV1Dot1Controller extends Controller
|
|||
abort_if(!$user, 403);
|
||||
abort_if($user->status != null, 403);
|
||||
|
||||
$res = $user->tokens->map(function($token, $key) {
|
||||
$res = $user->tokens->sortByDesc('created_at')->take(10)->map(function($token, $key) {
|
||||
return [
|
||||
'id' => $key + 1,
|
||||
'did' => encrypt($token->id),
|
||||
|
|
Loading…
Reference in a new issue