fixing remove user responed 200

This commit is contained in:
Kfir Dayan 2024-01-08 14:46:57 +02:00
parent fe899f97ad
commit f3e428bd0e

View file

@ -14,7 +14,6 @@ def create_event():
try:
data = request.json
data['user_id'] = g.user_id
print(data)
new_event = EventService.create_event(data)
if new_event:
return jsonify(new_event.to_dict()), 201
@ -91,5 +90,5 @@ def unattend_event(event_id):
# Check if there's an error in the response
if 'error' in response:
return jsonify({'error': response['error']}), 400 # Or another appropriate status code
return jsonify({'message': response['message']}), 200