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

@ -27,6 +27,10 @@ func Handle(cfg config.Config) http.HandlerFunc {
data := parseSlack(reqBody)
// Attempt to join romo before publishing
matrix.JoinRoom(cfg, vars, token)
// Publish to Matrix
resp := matrix.PublishText(cfg, vars, []byte(data), token)
router.Respond(w, 200, resp)