// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Horde.Acls;
namespace HordeServer.Server
{
///
/// General server ACL actions
///
public static class ServerAclAction
{
///
/// Access to the debug endpoints
///
public static AclAction Debug { get; } = new AclAction("Debug");
///
/// Ability to impersonate another user
///
public static AclAction Impersonate { get; } = new AclAction("Impersonate");
///
/// View estimated costs for particular operations
///
public static AclAction ViewCosts { get; } = new AclAction("ViewCosts");
///
/// Issue bearer token for the current user
///
public static AclAction IssueBearerToken { get; } = new AclAction("IssueBearerToken");
}
}