(filename)
| 1509 | |
| 1510 | @app.route('/frontend/<path:filename>') |
| 1511 | def frontend_assets(filename): |
| 1512 | return send_from_directory(FRONTEND_DIR, filename) |
| 1513 | |
| 1514 | |
| 1515 | @app.route('/api/auth/login', methods=['POST']) |
nothing calls this directly
no outgoing calls
no test coverage detected