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

View file

@ -704,12 +704,14 @@ class DirectMessageController extends Controller
->limit(8) ->limit(8)
->get() ->get()
->map(function($r) { ->map(function($r) {
$acct = AccountService::get($r->id);
return [ return [
'local' => (bool) !$r->domain, 'local' => (bool) !$r->domain,
'id' => (string) $r->id, 'id' => (string) $r->id,
'name' => $r->username, 'name' => $r->username,
'privacy' => true, 'privacy' => true,
'avatar' => $r->avatarUrl() 'avatar' => $r->avatarUrl(),
'account' => $acct
]; ];
}); });