We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send response here
gcp-database-as-a-service-stock-markets/data_service/views/helpdesk.py
Line 360 in 0a8e527
'message': 'successfully updated ticket'}), 200 return jsonify({'status': False, 'message': 'Unable to find ticket'}), 500 @use_context @handle_view_errors async def send_response_by_email_async(self, ticket_id: str, subject: str, message: str) -> tuple: """ find ticket send email response mark ticket save ticket save response """ ticket_instance: Ticket = Ticket.query(Ticket.ticket_id == ticket_id).get_async().get_result() if isinstance(ticket_instance, Ticket): ticket_instance.response_sent = True key = ticket_instance.put_async().get_result() # TODO Send response here if key is None: return jsonify({'status': False, 'message': 'General error updating database'}), 500 return jsonify({'status': True, 'payload': ticket_instance.to_dict(), 'message': 'successfully updated ticket'}), 200 return jsonify({'status': False, 'message': 'Unable to find ticket'}), 500 @use_context @handle_view_errors def send_sms_notification(self, ticket_id: str, subject: str, message: str) -> tuple:
1422d59f99f02087d6dca8b31e8089b94dd0131e
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Send response here
gcp-database-as-a-service-stock-markets/data_service/views/helpdesk.py
Line 360 in 0a8e527
1422d59f99f02087d6dca8b31e8089b94dd0131e
The text was updated successfully, but these errors were encountered: