DmitrMakeev commited on
Commit
4bc9cdd
·
verified ·
1 Parent(s): 10f9364

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -10
app.py CHANGED
@@ -1018,21 +1018,14 @@ def add_user_senler():
1018
  response = requests.post('https://senler.ru/api/subscribers/add', data=senler_data)
1019
 
1020
  # Проверяем успешность запроса
1021
- if response.status_code == 200:
1022
- senler_response = response.json()
1023
- success = senler_response.get('success', False)
1024
- message = senler_response.get('message', 'Unknown error')
1025
- else:
1026
- success = False
1027
- message = 'Failed to add user to Senler'
1028
 
1029
  # Возвращаем результат
1030
  return jsonify({
1031
- 'success': success,
1032
- 'message': message,
1033
- 'add_response': senler_response
1034
  })
1035
 
 
1036
  @app.route('/add_user_senler_full', methods=['POST'])
1037
  def add_user_senler_full():
1038
  # Получаем параметры из POST-запроса, если параметр отсутствует, устанавливаем значение пустой строки
 
1018
  response = requests.post('https://senler.ru/api/subscribers/add', data=senler_data)
1019
 
1020
  # Проверяем успешность запроса
1021
+ success = response.status_code == 200 and response.json().get('success', False)
 
 
 
 
 
 
1022
 
1023
  # Возвращаем результат
1024
  return jsonify({
1025
+ 'success': success
 
 
1026
  })
1027
 
1028
+
1029
  @app.route('/add_user_senler_full', methods=['POST'])
1030
  def add_user_senler_full():
1031
  # Получаем параметры из POST-запроса, если параметр отсутствует, устанавливаем значение пустой строки