Files
UnrealEngineUWP/Engine/Source/Programs/Horde/Horde.Server/Notifications/NotificationAclAction.cs
ben marsh 7d8efcb200 Horde: Move definition for AclAction into EpicGames.Horde.
[CL 31774896 by ben marsh in ue5-main branch]
2024-02-23 15:34:06 -05:00

18 lines
418 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Horde.Acls;
namespace Horde.Server.Notifications
{
/// <summary>
/// ACL actions which apply to notifications
/// </summary>
public static class NotificationAclAction
{
/// <summary>
/// Ability to subscribe to notifications
/// </summary>
public static AclAction CreateSubscription { get; } = new AclAction("CreateSubscription");
}
}