Update RateLimit trait

This commit is contained in:
Daniel Supernault 2019-07-15 23:47:14 -06:00
parent 9141e70131
commit 880c8e8a71
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 15 additions and 0 deletions

View File

@ -68,4 +68,19 @@ trait User {
{
return 100;
}
public function getMaxCollectionsPerHourAttribute()
{
return 10;
}
public function getMaxCollectionsPerDayAttribute()
{
return 20;
}
public function getMaxCollectionsPerMonthAttribute()
{
return 100;
}
}