django-shared-schema-tenants
django-shared-schema-tenants copied to clipboard
A lib to help in the creation of shared schema multi tenants applications without suffering
Bumps [wheel](https://github.com/pypa/wheel) from 0.29.0 to 0.38.1. Changelog Sourced from wheel's changelog. Release Notes UNRELEASED Updated vendored packaging to 22.0 0.38.4 (2022-11-09) Fixed PKG-INFO conversion in bdist_wheel mangling UTF-8 header values...
* Django Shared Schema Tenants version: 0.1.1 * Django version: 3.2.7 * Python version: 3.8.10 * Operating System: Ubuntu ### Description Tried to browse the admin to create a tenant...
Changed `MultipleTenantsModel` to `MultipleTenantsModelMixin`.
When we do filters with related fields, the database is making queries considering the whole related table, instead of only the portion of data from the current tenant. This makes...
This is already implemented but needs documentation
Eg.: https://github.com/filipeximenes/multitenancy/blob/master/multitenancy/threadlocal.py
There's only a create_relationship method. We could add: * add_permissions_on_current_tenant(user, perms) * remove_permissions_on_current_tenant(user, perms) * add_groups_on_current_tenant(user, groups) * remove_groups_on_current_tenant(user, groups) * remove_user_from_current_tenant(user)