We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69c0b8a commit 00f2ba8Copy full SHA for 00f2ba8
1 file changed
src/Umbraco.Core/Services/IContentService.cs
@@ -57,7 +57,9 @@ public interface IContentService : IContentServiceBase<IContent>
57
/// <summary>
58
/// Creates a blueprint from a content item.
59
/// </summary>
60
- IContent CreateBlueprintFromContent(IContent blueprint, string name, int userId = Constants.Security.SuperUserId);
+ // TODO: Remove the default implementation when CreateContentFromBlueprint is removed.
61
+ IContent CreateBlueprintFromContent(IContent blueprint, string name, int userId = Constants.Security.SuperUserId)
62
+ => throw new NotImplementedException();
63
64
65
/// (Deprecated) Creates a new content item from a blueprint.
0 commit comments