def list(self, request, *args, **kwargs):
        """
        List of meetings where the user is participant.

        :param request: the HTTP request done
        :return a 400 or 201 response depending on whether the data was correct or not.
        """
        self.serializer_class = MeetingSerializer
        return ListCreateAPIView.list(self, request, *args, **kwargs)
Exemple #2
0
 def list(self, request, *args, **kwargs):
     return ListCreateAPIView.list(self, request, *args, **kwargs)
Exemple #3
0
 def list(self, request, *args, **kwargs):
     return ListCreateAPIView.list(self, request, *args, **kwargs)