Privacy settings

This commit is contained in:
Grishka
2023-09-20 15:44:28 -03:00
committed by LucasGGamerM
parent ad8be2f7a3
commit 6d6ab789a3
8 changed files with 97 additions and 5 deletions

View File

@@ -139,6 +139,9 @@ public class Account extends BaseModel implements Searchable{
* When a timed mute will expire, if applicable.
*/
public Instant muteExpiresAt;
public boolean noindex;
public boolean indexable;
public boolean hideCollections;
public List<Role> roles;
@@ -238,6 +241,9 @@ public class Account extends BaseModel implements Searchable{
", source="+source+
", suspended="+suspended+
", muteExpiresAt="+muteExpiresAt+
", noindex="+noindex+
", indexable="+indexable+
", hideCollections="+hideCollections+
'}';
}
}