(self)
| 1406 | |
| 1407 | @with_app_context |
| 1408 | def dependencies(self): |
| 1409 | return self.backend.make_response( |
| 1410 | to_json(self._callback_list), |
| 1411 | content_type="application/json", |
| 1412 | ) |
| 1413 | |
| 1414 | def clientside_callback(self, clientside_function, *args, **kwargs): |
| 1415 | """Create a callback that updates the output by calling a clientside |
nothing calls this directly
no test coverage detected