45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using IronIntel.Contractor.Site.Security;
|
|
using System;
|
|
|
|
public partial class CurfewMovementTolerance : CurfewBasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!CheckLoginSession() || IronIntel.Contractor.SystemParams.IsDealer)
|
|
{
|
|
// TODO: sub page
|
|
//RedirectToLoginPage();
|
|
}
|
|
else
|
|
{
|
|
string methodName = Request.Form["MethodName"];
|
|
if (!string.IsNullOrEmpty(methodName))
|
|
{
|
|
ProcessRequest(methodName);
|
|
}
|
|
else if (!IsPostBack)
|
|
{
|
|
// todo nothing
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool IsAdmin
|
|
{
|
|
get
|
|
{
|
|
var user = GetCurrentUser();
|
|
if (user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin || user.UserType == IronIntel.Contractor.Users.UserTypes.Admin)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
protected override bool AllowCurrentLoginSessionEnter()
|
|
{
|
|
var user = GetCurrentUser();
|
|
return user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin;
|
|
}
|
|
} |