ByUserID gets limits specific to a particular tenant or nil if there are none
(userID string)
| 609 | type TenantLimits interface { |
| 610 | // ByUserID gets limits specific to a particular tenant or nil if there are none |
| 611 | ByUserID(userID string) *Limits |
| 612 | |
| 613 | // AllByUserID gets a mapping of all tenant IDs and limits for that user |
| 614 | AllByUserID() map[string]*Limits |
no outgoing calls
no test coverage detected