Changes between Version 1 and Version 2 of Ticket #30702, comment 6
- Timestamp:
- Aug 12, 2019, 3:19:36 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30702, comment 6
v1 v2 18 18 I can confirm this for SQLite and MySQL. 19 19 20 The user should never be able to see other customers, as the filter is "MdatCustomers.objects.filter(mdatmultitenancyusers__user=self.user)". 20 The user should never be able to see other customers, as the filter is: 21 {{{ 22 MdatCustomers.objects.filter(mdatmultitenancyusers__user=self.user) 23 }}}