Class tigrbl.orm.mixins.tenant_bound.TenantBound
    
              Bases: _RowBound
Plug-and-play tenant isolation.
• tenant_id column is defined per subclass (declared_attr) so the schema
  builder sees the right flags before caching.
• _RowBound’s read/list filters work because we implement is_visible.
tenant_id()
Source code in tigrbl/orm/mixins/tenant_bound.py
              | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |  | 
staticmethod
  
is_visible(obj, ctx)
Source code in tigrbl/orm/mixins/tenant_bound.py
              | 110 111 112 |  |