Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When a user exceeds their quota limit only their speed #175

Merged
merged 1 commit into from
Mar 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions api/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -1353,15 +1353,15 @@ func userLimitsGetFromTier(tierID int, quotaExceeded, inBytes bool) *UserLimitsG
bpsMul = 1
}
return &UserLimitsGET{
TierID: tierID,
TierName: t.TierName,
Storage: t.Storage,
TierID: tierID,
TierName: t.TierName,
Storage: t.Storage,
MaxUploadSize: t.MaxUploadSize,
MaxNumberUploads: t.MaxNumberUploads,
// If the user exceeds their quota, there will be brought down to
ro-tex marked this conversation as resolved.
Show resolved Hide resolved
// anonymous levels.
UploadBandwidth: limitsTier.UploadBandwidth * bpsMul,
DownloadBandwidth: limitsTier.DownloadBandwidth * bpsMul,
MaxUploadSize: limitsTier.MaxUploadSize,
MaxNumberUploads: limitsTier.MaxNumberUploads,
RegistryDelay: limitsTier.RegistryDelay,
}
}
Expand Down