Example #1
0
        public async Task <ActionResult> Properties(string tabId, int parentId, int id, string successfulActionCode)
        {
            var folder = ContentFolderService.Read(id);
            var model  = ContentFolderViewModel.Create(folder, tabId, parentId);

            model.SuccesfulActionCode = successfulActionCode;
            return(await JsonHtml("FolderProperties", model));
        }