Skip to content

Instantly share code, notes, and snippets.

@nest-don
Last active December 14, 2018 05:17
Show Gist options
  • Save nest-don/acd851bc227c91c931fd291de1143fdb to your computer and use it in GitHub Desktop.
Save nest-don/acd851bc227c91c931fd291de1143fdb to your computer and use it in GitHub Desktop.
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> SendMessage(MessageView msgView)
{
// Send a push notification to Slack
_runtime.Chirpy.Chirp("Message [{0}] received by {1}, dispatching to workers",
msgView.Edit.Text, _runtime.ComponentId);
if (ModelState.IsValid)
{
Session session = await GetSessionAsync();
msgView.Edit.SessionId = session.Id;
msgView.Edit.Status = string.Format("Message received by {0} at {1}",
_runtime.ComponentId, DateTime.Now.ToString("t"));
await _messageRepo.AddMessageAsync(msgView.Edit);
_runtime.Send(msgView.Edit, _runtime.GetNest("work"),
typeof(Message));
_runtime.Chirpy.Chirp("Message was sent at {0}", DateTime.Now.ToString("t"));
}
return RedirectToAction("Index");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment