Update User RateLimits

This commit is contained in:
Daniel Supernault 2019-07-08 21:48:04 -06:00
parent 869360a744
commit 8367e0cf48
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -49,8 +49,23 @@ trait User {
return 500; return 500;
} }
public function getMaxUserBansPerDayAttribute()
{
return 100;
}
public function getMaxInstanceBansPerDayAttribute() public function getMaxInstanceBansPerDayAttribute()
{ {
return 100; return 100;
} }
public function getMaxHashtagFollowsPerHourAttribute()
{
return 20;
}
public function getMaxHashtagFollowsPerDayAttribute()
{
return 100;
}
} }