a web page

vnext
Paul Schneider 8 years ago
parent c2d60ac53f
commit 7632de1673
2 changed files with 7 additions and 1 deletions

@ -187,5 +187,11 @@ namespace Yavsc.Controllers
return View(model);
}
[HttpGet("~/oauth/success")]
public IActionResult NativeAuthSuccess ()
{
return RedirectToAction("Index","Home");
}
}
}

@ -72,7 +72,7 @@ namespace Yavsc
}
else Startup.logger.LogInformation($"ValidateClientAuthentication: KO ({clientId})");
}
else Startup.logger.LogInformation($"ValidateClientAuthentication: nor Basic neither Form credential found");
else Startup.logger.LogWarning($"ValidateClientAuthentication: neither Basic nor Form credential were found");
return Task.FromResult(0);
}

Loading…