Skip to content
Snippets Groups Projects

BREAKING: Using the new Action Library for UIv2

Merged Petar Hristov requested to merge uiv2 into master
3 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -88,9 +88,9 @@ namespace Coscine.Api.User.Controllers
[HttpGet("[controller]/confirm/{verification}")]
public ActionResult<UserObject> ConfirmContactEmail(string verification)
{
Guid token = Guid.Parse(verification);
try
{
Guid token = Guid.Parse(verification);
UserObject userObject = _contactChangeModel.ExecuteConfirmation(token);
return Ok(userObject); // Return Code: 200 - OK
}
Loading