captcha-service.js
303 Bytes
/**
* Created by TaoHuang on 2016/6/17.
*/
'use strict';
module.exports = (sessionService) => {
const findByContentInSessionAsync = (token) => {
return sessionService.findCaptchaByTokenAsync(token);
};
return {
findByContentAsync: findByContentInSessionAsync
};
};