Get the current settings for the organization.
(self, request, format=None)
| 296 | permission_classes = [IsAuthenticated | ValidOrganization] |
| 297 | |
| 298 | def get(self, request, format=None): |
| 299 | """ |
| 300 | Get the current settings for the organization. |
| 301 | """ |
| 302 | organization = request.organization |
| 303 | return Response( |
| 304 | {"organization": organization.organization_name}, status=status.HTTP_200_OK |
| 305 | ) |
| 306 | |
| 307 | |
| 308 | class ChangeUserOrganizationView(APIView): |
no outgoing calls