Get the browser tree state.
()
| 229 | methods=['GET']) |
| 230 | @pga_login_required |
| 231 | def get_browser_tree_state(): |
| 232 | """Get the browser tree state.""" |
| 233 | |
| 234 | try: |
| 235 | data = get_setting('browser_tree_state') |
| 236 | except Exception as e: |
| 237 | current_app.logger.exception(e) |
| 238 | return internal_server_error(errormsg=str(e)) |
| 239 | |
| 240 | return Response(response=data, |
| 241 | status=200, |
| 242 | mimetype="application/json") |
| 243 | |
| 244 | |
| 245 | @blueprint.route("/save_file_format_setting/", |
nothing calls this directly
no test coverage detected