Skip to content

Commit

Permalink
Comment development-used print for test passing
Browse files Browse the repository at this point in the history
  • Loading branch information
juliolugo96 committed Jul 11, 2019
1 parent d50d0ae commit f01aeae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def create(self, validated_data):
request = self.context['request']


print(request.data['project_photo'])
# print(request.data['project_photo'])

try:
# validated_data['project_to_user'] = json.loads(
Expand Down
2 changes: 1 addition & 1 deletion projexbackend/consumers.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def websocket_receive(self, content, **kwargs):
the use of channels.auth.AuthMiddlewareStack in routing) is
allowed to subscribe to the requested object.
"""
print(content)
#print(content)
# serializer = self.get_serializer(data=content)
# if not serializer.is_valid():
# return
Expand Down

0 comments on commit f01aeae

Please sign in to comment.