Update endpoint port

This commit is contained in:
Michał Zieliński
2023-08-20 19:13:06 +02:00
parent 8a556b8b71
commit 711fe42c04
2 changed files with 2 additions and 2 deletions

View File

@@ -149,7 +149,7 @@ namespace WebAPI.Controllers
[AllowAnonymous]
public IActionResult autoImportMorska(string apiKey)
{
if (Request.Host.Value != "localhost:5400" || apiKey != configuration["apiKey"])
if (Request.Host.Value != "localhost:5401" || apiKey != configuration["apiKey"])
{
return Unauthorized();
}