2
0
зеркало из https://git.coolaj86.com/coolaj86/greenlock-store-fs.js.git synced 2025-07-01 17:56:50 +00:00

v1.0.3: setAsync function signature bugfix

Этот коммит содержится в:
AJ ONeal 2019-04-07 21:22:00 -06:00
родитель 3230c31138
Коммит 317dc3853f
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -187,7 +187,7 @@ module.exports.create = function (config) {
// //
// On Success: Promise.resolve(null||{ id }) - do not return undefined, do not throw, do not reject // On Success: Promise.resolve(null||{ id }) - do not return undefined, do not throw, do not reject
// On Error: Promise.reject(new Error("something descriptive for the user")) // On Error: Promise.reject(new Error("something descriptive for the user"))
store.accounts.setAsync = function (/*opts, receipt*/) { store.accounts.setAsync = function (/*opts*/) {
//receipt = opts.receipt || receipt; //receipt = opts.receipt || receipt;
//console.log('account.setAsync:', receipt); //console.log('account.setAsync:', receipt);
return PromiseA.resolve(null); return PromiseA.resolve(null);

Просмотреть файл

@ -1,6 +1,6 @@
{ {
"name": "le-store-fs", "name": "le-store-fs",
"version": "1.0.2", "version": "1.0.3",
"description": "A file-based certificate store for greenlock that supports wildcards.", "description": "A file-based certificate store for greenlock that supports wildcards.",
"homepage": "https://git.coolaj86.com/coolaj86/le-store-fs.js", "homepage": "https://git.coolaj86.com/coolaj86/le-store-fs.js",
"main": "index.js", "main": "index.js",