(self, *args, **kwargs)
| 16 | |
| 17 | @method_decorator(xframe_options_sameorigin) |
| 18 | def dispatch(self, *args, **kwargs): |
| 19 | return super().dispatch(*args, **kwargs) |
| 20 | |
| 21 | def get(self, request, *args, **kwargs): |
| 22 | connection_id = kwargs.get("connection", default_db_connection_id()) |
no outgoing calls
no test coverage detected