OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-12-12 2a4399780b2e146331fbdf0c931fc67dee5e844f
이메일 템플릿 수정[DB 초기화 필요]
1개 파일 추가됨
17 ■■■■■ 파일 변경됨
src/main/webapp/scripts/components/emailTemplate/emailTemplate.service.js 17 ●●●●● 패치 | 보기 | raw | blame | 히스토리
src/main/webapp/scripts/components/emailTemplate/emailTemplate.service.js
New file
@@ -0,0 +1,17 @@
'use strict';
define([
    'app'
], function (app) {
    app.factory("EmailTemplate", ['$http', '$log', function ($http, $log) {
        return {
            find : function (conditions) {
                return $http.post("emailTemplate/find", conditions).then(function (response) {
                    $log.debug("이메일 템플릿 목록 데이터 : ", response);
                    return response;
                });
            }
        }
    }
    ]);
});