forked from GNUsocial/gnu-social
Hide posts from users with private_stream in scoping streams
For example the public timeline would show notices from a user with private_stream configured. (previously it would only hide _new_ notices by this user as they would be the only ones with notice scoping set).
This commit is contained in:
@@ -992,6 +992,11 @@ class User extends Managed_DataObject
|
||||
return $act;
|
||||
}
|
||||
|
||||
public function isPrivateStream()
|
||||
{
|
||||
return $this->getProfile()->isPrivateStream();
|
||||
}
|
||||
|
||||
public function delPref($namespace, $topic)
|
||||
{
|
||||
return $this->getProfile()->delPref($namespace, $topic);
|
||||
|
Reference in New Issue
Block a user