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

@@ -2,7 +2,7 @@ name: simplecloudnotifier
description: "Receive push messages" description: "Receive push messages"
publish_to: 'none' publish_to: 'none'
version: 2.1.1+541 version: 2.2.2+544
environment: environment:
sdk: '>=3.9.0 <4.0.0' sdk: '>=3.9.0 <4.0.0'

View File

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