You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
575 B
C#
23 lines
575 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using Horde.Server.Acls;
|
|
|
|
namespace Horde.Server.Compute
|
|
{
|
|
/// <summary>
|
|
/// ACL actions for compute service
|
|
/// </summary>
|
|
public static class ComputeAclAction
|
|
{
|
|
/// <summary>
|
|
/// User can add tasks to the compute cluster
|
|
/// </summary>
|
|
public static AclAction AddComputeTasks { get; } = new AclAction("AddComputeTasks");
|
|
|
|
/// <summary>
|
|
/// User can get and list tasks from the compute cluster
|
|
/// </summary>
|
|
public static AclAction GetComputeTasks { get; } = new AclAction("GetComputeTasks");
|
|
}
|
|
}
|