Skip to content

Commit

Permalink
refactor: add BackofficeEntryPointManifest
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdcdev committed Oct 22, 2024
1 parent 84b8d4c commit dc17832
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace jcdcdev.Umbraco.Core.Web.Models.Manifests;

public class BackofficeEntryPointManifest : IManifest
{
public required string Name { get; set; }
public required string Alias { get; set; }
public required string Js { get; set; }
public string Type => "backofficeEntryPoint";
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace jcdcdev.Umbraco.Core.Web.Models.Manifests;

[Obsolete("Use BackofficeEntryPointManifest instead")]
public class EntryPointManifest : IManifest
{
public required string Name { get; set; }
Expand Down

0 comments on commit dc17832

Please sign in to comment.