diff --git a/Base/Controller/FOCommon.cs b/Base/Controller/FOCommon.cs index c980517..54c3880 100644 --- a/Base/Controller/FOCommon.cs +++ b/Base/Controller/FOCommon.cs @@ -817,6 +817,24 @@ namespace NP.Base.Controllers return JsonBack(result); } + /// + /// 교육신청 제한 해제시 GetCheckLectIs_stay를 GetCheckLectIs로 변경하여 반영한다. + /// + /// + /// + /// + /// + /// + /// + /// + public JsonResult GetCheckLectIs_stay(string man, string cgcode, string edu, string grade, int cmno, int pcmno) + { + int result = 0; // 0 이면 수강 가능, 그외 수강 불가 + + return JsonBack(result); + } + + /// /// 수강신청시 가능인원 체크하기 /// 20220803 diff --git a/FO/Controllers/FOBaseController.cs b/FO/Controllers/FOBaseController.cs index 87867f4..474267e 100644 --- a/FO/Controllers/FOBaseController.cs +++ b/FO/Controllers/FOBaseController.cs @@ -51,7 +51,7 @@ namespace NP.FO.Controllers else if ("Y".Equals(GetConfig("usessl")) && !Request.IsSecureConnection && !Request.Url.AbsolutePath.StartsWith("/Open/") && - !(Request.Url.AbsolutePath.ToUpper().StartsWith("/CROOM/") || Request.Url.AbsolutePath.ToUpper() == "/CROOM") && + //!(Request.Url.AbsolutePath.ToUpper().StartsWith("/CROOM/") || Request.Url.AbsolutePath.ToUpper() == "/CROOM") && !(Request.Url.AbsolutePath.ToUpper().StartsWith("/CDMS/") || Request.Url.AbsolutePath.ToUpper() == "/CDMS") && !Request.Url.AbsolutePath.ToUpper().StartsWith("/ACCOUNT/ERROR")) {