start testing second auth in frontend app

This commit is contained in:
2020-05-12 12:13:25 +02:00
parent be46b16378
commit 86b1a0e9e8
9 changed files with 179 additions and 10 deletions
+17
View File
@@ -0,0 +1,17 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace zero.Debug.Controllers
{
public class HomeController : Controller
{
[HttpGet]
public IActionResult Index()
{
return View();
}
}
}