()
| 571 | @blueprint.route("/js/endpoints.js") |
| 572 | @pgCSRFProtect.exempt |
| 573 | def exposed_urls(): |
| 574 | return make_response( |
| 575 | render_template('browser/js/endpoints.js'), |
| 576 | 200, {'Content-Type': MIMETYPE_APP_JS} |
| 577 | ) |
| 578 | |
| 579 | |
| 580 | @blueprint.route("/js/error.js") |
nothing calls this directly
no test coverage detected