Merge pull request #5060 from pixelfed/staging

Update Like model, increase max likes per day from 500 to 1500
This commit is contained in:
daniel 2024-04-29 02:47:45 -06:00 committed by GitHub
commit eecc7bef61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -69,6 +69,8 @@
- Update StatusController, refactor status embeds ([9a7acc12](https://github.com/pixelfed/pixelfed/commit/9a7acc12))
- Update ProfileController, refactor profile embeds ([8b8b1ffc](https://github.com/pixelfed/pixelfed/commit/8b8b1ffc))
- Update profile embed view, fix height bug ([65166570](https://github.com/pixelfed/pixelfed/commit/65166570))
- Update CustomEmojiService, only return local emoji ([7f8bba44](https://github.com/pixelfed/pixelfed/commit/7f8bba44))
- Update Like model, increase max likes per day from 500 to 1500 ([4223119f](https://github.com/pixelfed/pixelfed/commit/4223119f))
- ([](https://github.com/pixelfed/pixelfed/commit/))
## [v0.11.13 (2024-03-05)](https://github.com/pixelfed/pixelfed/compare/v0.11.12...v0.11.13)

View File

@ -9,7 +9,7 @@ class Like extends Model
{
use SoftDeletes;
const MAX_PER_DAY = 500;
const MAX_PER_DAY = 1500;
/**
* The attributes that should be mutated to dates.