Increase quota
Some checks failed
Build Docker and Deploy / Build Docker Container (push) Successful in 1m3s
Build Docker and Deploy / Run Unit-Tests (push) Failing after 8m51s
Build Docker and Deploy / Deploy to Server (push) Has been skipped

This commit is contained in:
2025-12-18 15:36:03 +01:00
parent e15d70dd0e
commit a7a2474e2a
2 changed files with 3 additions and 3 deletions

View File

@@ -88,9 +88,9 @@ func (u User) MaxTitleLength() int {
func (u User) QuotaPerDay() int {
if u.IsPro {
return 5000
return 15_000
} else {
return 50
return 500
}
}