(self)
| 954 | return layout |
| 955 | |
| 956 | def serve_layout(self): |
| 957 | # TODO - Set browser cache limit - pass hash into frontend |
| 958 | return self.backend.make_response( |
| 959 | to_json(self.get_layout()), |
| 960 | mimetype="application/json", |
| 961 | ) |
| 962 | |
| 963 | def _config(self): |
| 964 | # pieces of config needed by the front end |
nothing calls this directly
no test coverage detected