c03b2707a4
con qualche scaffolding fatto...
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
/*
|
|
// Uncomment this class to provide custom runtime policy for Glimpse
|
|
|
|
using Glimpse.AspNet.Extensions;
|
|
using Glimpse.Core.Extensibility;
|
|
|
|
namespace StockManMVC
|
|
{
|
|
public class GlimpseSecurityPolicy:IRuntimePolicy
|
|
{
|
|
public RuntimePolicy Execute(IRuntimePolicyContext policyContext)
|
|
{
|
|
// You can perform a check like the one below to control Glimpse's permissions within your application.
|
|
// More information about RuntimePolicies can be found at http://getglimpse.com/Help/Custom-Runtime-Policy
|
|
// var httpContext = policyContext.GetHttpContext();
|
|
// if (!httpContext.User.IsInRole("Administrator"))
|
|
// {
|
|
// return RuntimePolicy.Off;
|
|
// }
|
|
|
|
return RuntimePolicy.On;
|
|
}
|
|
|
|
public RuntimeEvent ExecuteOn
|
|
{
|
|
// The RuntimeEvent.ExecuteResource is only needed in case you create a security policy
|
|
// Have a look at http://blog.getglimpse.com/2013/12/09/protect-glimpse-axd-with-your-custom-runtime-policy/ for more details
|
|
get { return RuntimeEvent.EndRequest | RuntimeEvent.ExecuteResource; }
|
|
}
|
|
}
|
|
}
|
|
*/ |