mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update DirectMessageController, include account entity in lookup endpoint
This commit is contained in:
parent
d1c05f080d
commit
9e223a6b83
1 changed files with 3 additions and 1 deletions
|
@ -704,12 +704,14 @@ class DirectMessageController extends Controller
|
|||
->limit(8)
|
||||
->get()
|
||||
->map(function($r) {
|
||||
$acct = AccountService::get($r->id);
|
||||
return [
|
||||
'local' => (bool) !$r->domain,
|
||||
'id' => (string) $r->id,
|
||||
'name' => $r->username,
|
||||
'privacy' => true,
|
||||
'avatar' => $r->avatarUrl()
|
||||
'avatar' => $r->avatarUrl(),
|
||||
'account' => $acct
|
||||
];
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue