Merge branch 'master' of ssh://git.coolaj86.com:22042/coolaj86/greenlock.js into v2.2

This commit is contained in:
AJ ONeal 2018-05-21 13:47:59 -06:00
當前提交 13064ee177
共有 1 個檔案被更改,包括 3 行新增0 行删除

查看文件

@ -91,6 +91,7 @@ module.exports.create = function (gl) {
return gl.acme.registerNewAccountAsync({
email: args.email
, newRegUrl: args._acmeUrls.newReg
, newAuthzUrl: args._acmeUrls.newAuthz
, agreeToTerms: function (tosUrl, agreeCb) {
if (true === args.agreeTos || tosUrl === args.agreeTos || tosUrl === gl.agreeToTerms) {
agreeCb(null, tosUrl);
@ -110,6 +111,8 @@ module.exports.create = function (gl) {
keypair: keypair
, receipt: receipt
, email: args.email
, newRegUrl: args._acmeUrls.newReg
, newAuthzUrl: args._acmeUrls.newAuthz
};
// TODO move templating of arguments to right here?