Update RateLimit, add max post edits per hour and day

This commit is contained in:
Daniel Supernault 2020-01-29 22:07:09 -07:00
parent ae24433b8c
commit 51fbfcdcf7
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 10 additions and 0 deletions

View File

@ -113,4 +113,14 @@ trait User {
{
return 35;
}
public function getMaxPostEditsPerHourAttribute()
{
return 10;
}
public function getMaxPostEditsPerDayAttribute()
{
return 20;
}
}