viewing of others code working

This commit is contained in:
2021-07-22 20:41:12 -04:00
parent 59e5bf2585
commit 2d36f0d2f6
6 changed files with 75 additions and 24 deletions

View File

@ -12,5 +12,18 @@ namespace BinaryDad.Coding.Controllers
{
return View();
}
public bool IsBadWord(string word)
{
return false;
}
[Route("view/{connectionId}")]
public IActionResult ViewHtml(string connectionId)
{
var user = Users.Sessions[connectionId];
return View(user);
}
}
}