Exemple #1
0
        public JsonResult CreateIndex(string indexFolder)
        {
            IndexHelper.AddIndex(indexFolder);
            AjaxResponse ajaxResponse = GetIndexAjaxResponse();

            return(Json(ajaxResponse));
        }
Exemple #2
0
        public JsonResult CreateIndex(string indexFolder)
        {
            string indexFolderPath = _defaultIndexFolder + "\\" + indexFolder;

            IndexHelper.AddIndex(indexFolderPath);
            AjaxResponse ajaxResponse = GetIndexAjaxResponse();

            return(Json(ajaxResponse));
        }