<기능개선>
1. PMS NO : 4684 2. (주요)작업내용 (1) croom ssl 제어부분 수정
This commit is contained in:
parent
5161131bf3
commit
a02ae398d7
|
|
@ -817,6 +817,24 @@ namespace NP.Base.Controllers
|
|||
return JsonBack(result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 교육신청 제한 해제시 GetCheckLectIs_stay를 GetCheckLectIs로 변경하여 반영한다.
|
||||
/// </summary>
|
||||
/// <param name="man"></param>
|
||||
/// <param name="cgcode"></param>
|
||||
/// <param name="edu"></param>
|
||||
/// <param name="grade"></param>
|
||||
/// <param name="cmno"></param>
|
||||
/// <param name="pcmno"></param>
|
||||
/// <returns></returns>
|
||||
public JsonResult GetCheckLectIs_stay(string man, string cgcode, string edu, string grade, int cmno, int pcmno)
|
||||
{
|
||||
int result = 0; // 0 이면 수강 가능, 그외 수강 불가
|
||||
|
||||
return JsonBack(result);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 수강신청시 가능인원 체크하기
|
||||
/// 20220803
|
||||
|
|
|
|||
|
|
@ -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"))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue