Update User Ratelimits

This commit is contained in:
Daniel Supernault 2019-09-01 18:27:47 -06:00
parent 16b426ec1e
commit d186dd6356
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 15 additions and 0 deletions

View File

@ -83,4 +83,19 @@ trait User {
{
return 100;
}
public function getMaxComposeMediaUpdatesPerHourAttribute()
{
return 100;
}
public function getMaxComposeMediaUpdatesPerDayAttribute()
{
return 1000;
}
public function getMaxComposeMediaUpdatesPerMonthAttribute()
{
return 5000;
}
}