Privacy settings

This commit is contained in:
Grishka
2023-09-20 21:44:28 +03:00
parent e3fb2cd03c
commit 39af05524d
10 changed files with 87 additions and 9 deletions

View File

@@ -132,6 +132,9 @@ public class Account extends BaseModel{
* When a timed mute will expire, if applicable.
*/
public Instant muteExpiresAt;
public boolean noindex;
public boolean indexable;
public boolean hideCollections;
@Override
@@ -191,6 +194,9 @@ public class Account extends BaseModel{
", source="+source+
", suspended="+suspended+
", muteExpiresAt="+muteExpiresAt+
", noindex="+noindex+
", indexable="+indexable+
", hideCollections="+hideCollections+
'}';
}
}