()
| 19291 | |
| 19292 | @app.route('/') |
| 19293 | def home(): |
| 19294 | csrf_token = ensure_admin_browser_session() |
| 19295 | return render_template_string(HTML_UI, creds=core.creds, social_map=SOCIAL_MAP, crypto_map=CRYPTO_MAP, logo_url=LOGO_URL, author_info=AUTHOR_INFO, donations=DONATIONS, csrf_token=csrf_token) |
| 19296 | |
| 19297 | @app.route('/assets/face-recognition-banner.jpg') |
| 19298 | def face_recognition_banner(): |
nothing calls this directly
no test coverage detected