using System;
using System.Web.Http;
using System.Web.Mvc;
using Infrastructure;
using OpenAuth.App;
using OpenAuth.App.Request;
using OpenAuth.Mvc.Models;
using OpenAuth.Repository.Domain;
namespace OpenAuth.Mvc.Controllers
{
public class FormsController : BaseController
{
public FormApp App { get; set; }
//
[Authenticate]
public ActionResult Index()
{
return View();
}
public ActionResult Preview()
{
return View();
}
///