jwtbutler 1.9.3 → 1.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,6 +67,7 @@ add the public sitekey:
|
|
|
67
67
|
|
|
68
68
|
```js
|
|
69
69
|
const api = new jwtbutler({
|
|
70
|
+
/* ... */
|
|
70
71
|
captcha: {
|
|
71
72
|
provider: 'hcaptcha',
|
|
72
73
|
sitekey: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
|
@@ -78,7 +79,10 @@ if your auth server uses passkeys and you want to show \
|
|
|
78
79
|
the passkey button in the default login form, enable it:
|
|
79
80
|
|
|
80
81
|
```js
|
|
81
|
-
|
|
82
|
+
const api = new jwtbutler({
|
|
83
|
+
/* ... */
|
|
84
|
+
passkeys: true
|
|
85
|
+
});
|
|
82
86
|
```
|
|
83
87
|
|
|
84
88
|
### single sign on
|