Adding functionality to join rooms.

This commit is contained in:
2021-02-04 17:50:52 -06:00
parent c21eb8e3c2
commit ed08994a7c
4 changed files with 27 additions and 22 deletions

View File

@ -24,6 +24,10 @@ func Handle(cfg config.Config) http.HandlerFunc {
log.Error().Err(err).Msg("An error has occurred")
}
// Attempt to join room before sending a message.
matrix.JoinRoom(cfg, vars, token)
// Publish to Matrix
resp := matrix.PublishText(cfg, vars, reqBody, token)
router.Respond(w, 200, resp)