fixing remove user responed 200
This commit is contained in:
parent
fe899f97ad
commit
f3e428bd0e
1 changed files with 1 additions and 2 deletions
|
@ -14,7 +14,6 @@ def create_event():
|
||||||
try:
|
try:
|
||||||
data = request.json
|
data = request.json
|
||||||
data['user_id'] = g.user_id
|
data['user_id'] = g.user_id
|
||||||
print(data)
|
|
||||||
new_event = EventService.create_event(data)
|
new_event = EventService.create_event(data)
|
||||||
if new_event:
|
if new_event:
|
||||||
return jsonify(new_event.to_dict()), 201
|
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
|
# Check if there's an error in the response
|
||||||
if 'error' in response:
|
if 'error' in response:
|
||||||
return jsonify({'error': response['error']}), 400 # Or another appropriate status code
|
return jsonify({'error': response['error']}), 400 # Or another appropriate status code
|
||||||
|
|
||||||
return jsonify({'message': response['message']}), 200
|
return jsonify({'message': response['message']}), 200
|
Loading…
Reference in a new issue