()
| 589 | @blueprint.route("/js/messages.js") |
| 590 | @pgCSRFProtect.exempt |
| 591 | def messages_js(): |
| 592 | return make_response( |
| 593 | render_template('browser/js/messages.js', _=gettext), |
| 594 | 200, {'Content-Type': MIMETYPE_APP_JS}) |
| 595 | |
| 596 | |
| 597 | @blueprint.route("/browser.css") |
nothing calls this directly
no test coverage detected