(request, uid)
| 34 | |
| 35 | @expose("/display/<uid>") |
| 36 | def display(request, uid): |
| 37 | url = URL.query.get(uid) |
| 38 | if not url: |
| 39 | raise NotFound() |
| 40 | return render_template("display.html", url=url) |
| 41 | |
| 42 | |
| 43 | @expose("/u/<uid>") |
nothing calls this directly
no test coverage detected