35 lines
861 B
C#
35 lines
861 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
namespace Umbraco.Cms.Core.Actions;
|
|
|
|
/// <summary>
|
|
/// This action is invoked when copying a document or media.
|
|
/// </summary>
|
|
public class ActionUpdate : IAction
|
|
{
|
|
/// <inheritdoc cref="IAction.ActionLetter"/>
|
|
public const char ActionLetter = 'A';
|
|
|
|
/// <inheritdoc cref="IAction.ActionAlias"/>
|
|
public const string ActionAlias = "update";
|
|
|
|
/// <inheritdoc/>
|
|
public char Letter => ActionLetter;
|
|
|
|
/// <inheritdoc/>
|
|
public string Alias => ActionAlias;
|
|
|
|
/// <inheritdoc />
|
|
public string Category => Constants.Conventions.PermissionCategories.ContentCategory;
|
|
|
|
/// <inheritdoc />
|
|
public string Icon => "icon-save";
|
|
|
|
/// <inheritdoc />
|
|
public bool ShowInNotifier => true;
|
|
|
|
/// <inheritdoc />
|
|
public bool CanBePermissionAssigned => true;
|
|
}
|