1
0
Fork 0
forked from mirror/pixelfed

Update rate limits

This commit is contained in:
Daniel Supernault 2020-01-05 22:05:58 -07:00
parent da8b06c088
commit 3b4219c0aa
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -101,16 +101,16 @@ trait User {
public function getMaxStoriesPerHourAttribute() public function getMaxStoriesPerHourAttribute()
{ {
return 10; return 20;
} }
public function getMaxStoriesPerDayAttribute() public function getMaxStoriesPerDayAttribute()
{ {
return 15; return 30;
} }
public function getMaxStoryDeletePerDayAttribute() public function getMaxStoryDeletePerDayAttribute()
{ {
return 20; return 35;
} }
} }