OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-11-22 3fa520f0cd36bb903b25437c745bb4f2c0eca848
src/main/webapp/scripts/components/issueTableConfig/issueTableConfig.service.js
@@ -19,19 +19,33 @@
                });
            },
            addRelation : function (conditions) {
            relationAdd : function (conditions) {
                return $http.post("issueTableConfig/relationAdd", conditions).then(function (response) {
                    $log.debug("연관 이슈 목록 테이블 설정 등록 : ", response);
                    return response;
                });
            },
            addDown : function (conditions) {
            relationDetail : function (conditions) {
                return $http.post("issueTableConfig/relationDetail", conditions).then(function (response) {
                    $log.debug("연관 이슈 목록 테이블 설정 상세 조회 : ", response);
                    return response;
                });
            },
            downAdd : function (conditions) {
                return $http.post("issueTableConfig/downAdd", conditions).then(function (response) {
                    $log.debug("하위 이슈 목록 테이블 설정 등록 : ", response);
                    return response;
                });
            }
            },
            downDetail : function (conditions) {
                return $http.post("issueTableConfig/downDetail", conditions).then(function (response) {
                    $log.debug("하위 목록 테이블 설정 상세 조회 : ", response);
                    return response;
                });
            },
        }
    }
    ])