1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

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;
} }
} }