(ptype string, field string, index int)
| 545 | } |
| 546 | |
| 547 | func (e *Enforcer) SetFieldIndex(ptype string, field string, index int) { |
| 548 | assertion := e.model["p"][ptype] |
| 549 | assertion.FieldIndexMutex.Lock() |
| 550 | assertion.FieldIndexMap[field] = index |
| 551 | assertion.FieldIndexMutex.Unlock() |
| 552 | } |
no outgoing calls