MCPcopy Create free account
hub / github.com/QuantumNous/new-api / decreaseUserQuota

Function decreaseUserQuota

model/user.go:1274–1280  ·  view source on GitHub ↗
(id int, quota int)

Source from the content-addressed store, hash-verified

1272}
1273
1274func decreaseUserQuota(id int, quota int) (err error) {
1275 err = DB.Model(&User{}).Where("id = ?", id).Update("quota", gorm.Expr("quota - ?", quota)).Error
1276 if err != nil {
1277 return err
1278 }
1279 return err
1280}
1281
1282func DeltaUpdateUserQuota(id int, delta int) (err error) {
1283 if delta == 0 {

Callers 1

DecreaseUserQuotaFunction · 0.85

Calls 1

UpdateMethod · 0.45

Tested by

no test coverage detected