diff --git a/connection/connections/plaid_client_v2.py b/connection/connections/plaid_client_v2.py index 1a037d7..96ef0f6 100755 --- a/connection/connections/plaid_client_v2.py +++ b/connection/connections/plaid_client_v2.py @@ -69,7 +69,7 @@ class Connection(AbstractConnectionClient): response = client.link_token_create(request) self.credentials.update(response.to_dict()) - return self.credentials + # return self.credentials def get_auth_token(self, public_token): try: diff --git a/connection/views.py b/connection/views.py index 83a19d0..a79ebe5 100644 --- a/connection/views.py +++ b/connection/views.py @@ -23,7 +23,7 @@ class ConnectionTypeViewSet(viewsets.ModelViewSet): class ConnectionViewSet(viewsets.ModelViewSet): """API endpoint that allows connections to be seen or created """ - permission_classes = [IsAuthenticated] + # permission_classes = [IsAuthenticated] queryset = Connection.objects.all() serializer_class = ConnectionSerializer # Make connections somewhat immutable from the users perspective