Update DirectMessageController, include account entity in lookup endpoint

This commit is contained in:
Daniel Supernault 2022-09-06 23:27:37 -06:00
parent d1c05f080d
commit 9e223a6b83
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 1 deletions

View File

@ -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
];
});