(id string, responseWriter http.ResponseWriter, host string)
| 93 | } |
| 94 | |
| 95 | func (c *ApiController) generateMessageAnswer(id string, responseWriter http.ResponseWriter, host string) { |
| 96 | _, signedIn := c.CheckSignedIn() |
| 97 | generateMessageAnswer(id, responseWriter, host, c.GetAcceptLanguage(), signedIn, c.ResponseError) |
| 98 | } |
| 99 | |
| 100 | func streamMessageAnswerJob(responseWriter http.ResponseWriter, request *http.Request, job *messageAnswerJob) { |
| 101 | replay, ch, unsubscribe, done := job.subscribe() |
nothing calls this directly
no test coverage detected