You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
33 lines
886 B
C#
33 lines
886 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using EpicGames.Horde.Acls;
|
|
|
|
namespace Horde.Server.Projects
|
|
{
|
|
/// <summary>
|
|
/// ACL actions that can be performed on projects
|
|
/// </summary>
|
|
public static class ProjectAclAction
|
|
{
|
|
/// <summary>
|
|
/// Allows the creation of new projects
|
|
/// </summary>
|
|
public static AclAction CreateProject { get; } = new AclAction("CreateProject");
|
|
|
|
/// <summary>
|
|
/// Allows deletion of projects.
|
|
/// </summary>
|
|
public static AclAction DeleteProject { get; } = new AclAction("DeleteProject");
|
|
|
|
/// <summary>
|
|
/// Modify attributes of a project (name, categories, etc...)
|
|
/// </summary>
|
|
public static AclAction UpdateProject { get; } = new AclAction("UpdateProject");
|
|
|
|
/// <summary>
|
|
/// View information about a project
|
|
/// </summary>
|
|
public static AclAction ViewProject { get; } = new AclAction("ViewProject");
|
|
}
|
|
}
|