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

Function decreaseUserQuota

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

Source from the content-addressed store, hash-verified

1332}
1333
1334func decreaseUserQuota(id int, quota int) (err error) {
1335 err = DB.Model(&User{}).Where("id = ?", id).Update("quota", gorm.Expr("quota - ?", quota)).Error
1336 if err != nil {
1337 return err
1338 }
1339 return err
1340}
1341
1342func DeltaUpdateUserQuota(id int, delta int) (err error) {
1343 if delta == 0 {

Callers 1

DecreaseUserQuotaFunction · 0.85

Calls 1

UpdateMethod · 0.45

Tested by

no test coverage detected