(w http.ResponseWriter, r *http.Request)
| 32 | } |
| 33 | |
| 34 | func (a *API) handleRejectMagicLinkGet(w http.ResponseWriter, r *http.Request) { |
| 35 | a.renderConfirmPage(w, r, approvaltoken.ActionReject) |
| 36 | } |
| 37 | |
| 38 | // renderConfirmPage validates the token, loads the pending message, and |
| 39 | // renders an HTML page with a POST form targeting the same endpoint. |
nothing calls this directly
no test coverage detected