Merge branch 'new-reg-url' of mrstegeman/greenlock.js into master

This commit is contained in:
AJ ONeal 2018-05-21 17:17:00 +00:00 committed by Gitea
commit 47b02e22a0
1 changed files with 3 additions and 0 deletions

View File

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