Questions tagged [django-organizations]

django-organizations is an application that provides group account functionality for Django, allowing user access and rights to be consolidated into group accounts.

9 questions
2
votes
1 answer

Get User's organization(s) in django-organizations

For the app django-organizations, how do you get a User's organization? From the docs it says >>> from organizations.utils import create_organization >>> chris = User.objects.get(username="chris") >>> soundgarden = create_organization(chris,…
chris Frisina
  • 19,086
  • 22
  • 87
  • 167
1
vote
1 answer

How to make django-organizations' custom invitation work

I am trying to make the Django-organization's custom invitation work. But it's throwing an error. I am unable to find the reason. Below is my code: My urls.pyfile from django.urls import path, include from organizations.backends import…
Shovon
  • 32
  • 7
1
vote
1 answer

How can I verify that all related fields in a Django REST Framework serializer specify objects with the same owner?

I have a Django app that uses django-organizations for supporting shared accounts, and rest_framework for an API. I have a custom model for authentication that relates the user to an API token specific to an organization. I have a model with a few…
jakogut
  • 4,409
  • 6
  • 29
  • 41
1
vote
1 answer

Manager isn't accessible via Account instances

In using django-organizations to give my project organizations, I made a separate app for accounts. Using the code from the docs (https://django-organizations.readthedocs.io/en/latest/cookbook.html#advanced-customization-using-abstract-models) in…
0
votes
0 answers

Manage multiple accounts in different companies with django

I'm learning and working with django less than a year ago. Now I have to develop a site managing multiple users separated by many different companies. I've recently found django-organizations package which seems suitable for this application, I have…
Max Iskram
  • 147
  • 10
0
votes
1 answer

Django DRF - Access to field ForeignKey instance inside a custom serializer validator method

I'm currently having a bit of a conceptual headache over how best to reference the instance of a ForeignKey field inside a custom serializer validator method ... To give an overview of the system. I have the following "Candidate" model, the imporant…
0
votes
0 answers

django.db.utils.ProgrammingError: relation "vendors_vendor" does not exist

I am using django-organisations to have multiple user-accounts in multiple organisations. However, it is single-schema architecture. In order to make it separate-schema architecture, I am using django-tenants. This is my project…
Vineet
  • 723
  • 4
  • 12
  • 31
0
votes
0 answers

Extended a third party app in Django (django-organizations)

I'm, trying out django-organizaitons (https://django-organizations.readthedocs.io/en/latest/) and so far it's really handy - however, I wish to extend the basic model by adding another field to a model. The app does provide abstraction classes, but…
erikvm
  • 858
  • 10
  • 30
0
votes
1 answer

Filtering OrganizationUser's by Organization in Django-Organizations

There is a relatively similar thread on this topic, but I can't seem to figure out how to translate it to my situation. I have a roster that I need to only display the organizationusers within the same organization of the viewer. I have a webapp…