Files
2018-09-11 21:32:26 +02:00

15 lines
336 B
C#

using SteamWare;
using System;
namespace PUB.PAZ
{
public partial class MyHome : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
bool userAuth = devicesAuthProxy.stObj.userHasRight("PAZ");
divButtons.Visible = userAuth;
divAuthError.Visible = !userAuth;
}
}
}