// Copyright (c) Umbraco. // See LICENSE for more details. namespace Umbraco.Cms.Core.Actions; /// /// This action is invoked when children to a document is being sent to published (by an editor without publishrights). /// [Obsolete("Scheduled for removal in v13")] public class ActionToPublish : IAction { /// public const char ActionLetter = 'H'; /// public const string ActionAlias = "sendtopublish"; /// public char Letter => ActionLetter; /// public string Alias => ActionAlias; /// public string Category => Constants.Conventions.PermissionCategories.ContentCategory; /// public string Icon => "icon-outbox"; /// public bool ShowInNotifier => true; /// public bool CanBePermissionAssigned => true; }