mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
18 lines
361 B
C#
18 lines
361 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace BuildFeed.Areas.admin.Controllers
|
|
{
|
|
[Authorize(Users = "hounsell")]
|
|
public class baseController : Controller
|
|
{
|
|
// GET: admin/base
|
|
public ActionResult index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |