(self, request, format=None)
| 2012 | ], |
| 2013 | ) |
| 2014 | def get(self, request, format=None): |
| 2015 | organization = request.organization |
| 2016 | return Response( |
| 2017 | { |
| 2018 | "organization_id": OrganizationUUIDField().to_representation( |
| 2019 | organization.organization_id |
| 2020 | ), |
| 2021 | }, |
| 2022 | status=status.HTTP_200_OK, |
| 2023 | ) |
| 2024 | |
| 2025 | |
| 2026 | class Healthcheck(APIView): |
no test coverage detected