Files
Disco/Disco.Web.Extensions/MvcExtensions/dbAdminController.cs
T
Gary Sharp 664cde59eb Update: Authorize User Roles with Attribute
Avoid overriding the Context.User in the http pipeline.
2013-05-16 19:27:11 +10:00

13 lines
273 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Disco.Web
{
[AuthorizeDiscoUsersAttribute(Disco.Models.Repository.User.Types.Admin)]
public class dbAdminController : dbController
{
}
}