I am trying to build a white labled product and I am thinking to use django-sites module. I have multiple models of a particular site. I have found an example like add foreign key of a Site model to a single model. but adding foreign key of Site model to each and every model in every api call, I don't think is a best practice.
Is there any other way to define once and it will add automatically Site id like we use abstract classes for created_at and so on.
Thanks.
You don't need to add it to API calls, you can get the current site from the request (it uses caching as well), and you can create all your models from an abstract model:
to get a site from the request:
Or:
You can find more examples here: https://docs.djangoproject.com/en/4.0/ref/contrib/sites/