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

Function decreaseUserQuota

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

Source from the content-addressed store, hash-verified

1310}
1311
1312func decreaseUserQuota(id int, quota int) (err error) {
1313 err = DB.Model(&User{}).Where("id = ?", id).Update("quota", gorm.Expr("quota - ?", quota)).Error
1314 if err != nil {
1315 return err
1316 }
1317 return err
1318}
1319
1320func DeltaUpdateUserQuota(id int, delta int) (err error) {
1321 if delta == 0 {

Callers 1

DecreaseUserQuotaFunction · 0.85

Calls 1

UpdateMethod · 0.45

Tested by

no test coverage detected