// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Horde.Acls;
namespace HordeServer.Accounts
{
///
/// ACL actions valid for manipulating jobs
///
public static class AccountAclAction
{
///
/// Ability to create new accounts
///
public static AclAction CreateAccount { get; } = new AclAction("CreateAccount");
///
/// Update an account settings
///
public static AclAction UpdateAccount { get; } = new AclAction("UpdateAccount");
///
/// Delete an account from the server
///
public static AclAction DeleteAccount { get; } = new AclAction("DeleteAccount");
///
/// Ability to view account information
///
public static AclAction ViewAccount { get; } = new AclAction("ViewAccount");
}
}