Update Profile model

pull/547/head
Daniel Supernault 2018-11-13 19:16:59 -07:00
rodzic 11749bdc6a
commit 908740b46f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 14 dodań i 4 usunięć

Wyświetl plik

@ -275,10 +275,20 @@ class Profile extends Model
]
];
break;
default:
# code...
break;
}
return $audience;
}
public function getAudienceInbox($scope = 'public')
{
return $this
->followers()
->whereLocalProfile(false)
->get()
->map(function($follow) {
return $follow->sharedInbox ?? $follow->inbox_url;
})
->unique()
->toArray();
}
}