Nearly have send to publish working, it's all wired up in the UI to the controller, just need to implement the logic.

This commit is contained in:
Shannon
2013-10-31 18:17:30 +11:00
parent 90c62bddd9
commit 523c48d4fd
10 changed files with 125 additions and 89 deletions

View File

@@ -21,6 +21,8 @@ namespace Umbraco.Core.Models
internal static bool HasPathAccess(string path, int startNodeId, int recycleBinId)
{
Mandate.ParameterNotNullOrEmpty(path, "path");
var formattedPath = "," + path + ",";
var formattedStartNodeId = "," + startNodeId.ToInvariantString() + ",";
var formattedRecycleBinId = "," + recycleBinId.ToInvariantString() + ",";