(r *http.Request)
| 1005 | } |
| 1006 | |
| 1007 | func isArchiveView(r *http.Request) bool { |
| 1008 | return strings.HasSuffix(r.RequestURI, "/archive/") || mux.Vars(r)["archive"] == "archive" |
| 1009 | } |
| 1010 | |
| 1011 | func handleViewMention(app *App, w http.ResponseWriter, r *http.Request) error { |
| 1012 | vars := mux.Vars(r) |
no outgoing calls
no test coverage detected