Closed dtouzeau closed 3 years ago
Not sure to understand your request, but there's a confirm
module with a message you can use.
data_to_send = {
u'module': u'confirm',
u'message': u'Your message',
}
self.shared.send_data(data_to_send)
_status, _error = self.shared.receive_data()
if self.shared.get(u'display_message') != u'True':
_status, _error = False, u'Connection closed by client'
Exactly what needed !!
Hi i would like from passtrough to send a text message only when a client is connected with wrong settings.
The only workaround i have found is to send an empty form with the close module
Is there a better way to just output a message ?