Added comments to understand where to implement

This commit is contained in:
emmagarland
2020-12-01 20:51:13 +00:00
parent cf56731e42
commit 8a552a10d9
2 changed files with 1 additions and 1 deletions

View File

@@ -167,6 +167,7 @@ namespace Umbraco.Web.BackOffice.Controllers
[TypeFilter(typeof(OutgoingEditorModelEventAttribute))]
public MemberDisplay GetByKey(Guid key)
{
//TODO: this is not finding the key currently
IMember foundMember = _memberService.GetByKey(key);
if (foundMember == null)
{

View File

@@ -66,7 +66,6 @@ namespace Umbraco.Web.BackOffice.Trees
var node = GetSingleTreeNode(id, queryStrings);
//add the tree alias to the node since it is standalone (has no root for which this normally belongs)
//TODO: ID is null since new member created
node.Value.AdditionalData["treeAlias"] = TreeAlias;
return node;
}