sp-dev-fx-webparts/samples/angular-aad-webapi/api/securecall/Controllers/HomeController.cs

19 lines
330 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace securecall.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}