viewing of others code working
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user