@nerdfolio/ba-guest-list 0.0.4 → 0.0.5
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Plugin to provide fixed guest list login functionality for [better-auth](https://www.better-auth.com).
|
|
4
4
|
|
|
5
|
-
Intended use is for development testing and possibly demos with known login names, e.g. login as "Alice" or "Bob". You can use it with a single-input form or binding a name to a submit button. Names are case
|
|
5
|
+
Intended use is for development testing and possibly demos with known login names, e.g. login as "Alice" or "Bob". You can use it with a single-input form or binding a name to a submit button. Names are single-word and case-insensitive.
|
|
6
6
|
|
|
7
7
|
The fixed guest list is defined on the server-side with optional roles so this plugin can also be used for testing roles.
|
|
8
8
|
You can optionally reveal the server guest list to the client (useful for demo login scenarios).
|
|
@@ -13,7 +13,7 @@ THIS IS NOT MEANT FOR SECURE PRODUCTION APP!
|
|
|
13
13
|
|
|
14
14
|
This plugin does not add any field to the schema as its intended use is temporary for testing and demos.
|
|
15
15
|
|
|
16
|
-
Internally, the guest name is transformed into an email via a fixed template, e.g. `tom.onguestlist@emaildomain` and that is the way that user will be looked up.
|
|
16
|
+
Internally, the guest name is transformed into an email via a fixed template, e.g. `tom.onguestlist@emaildomain` and that is the way that user will be looked up.
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
# Installation
|
package/package.json
CHANGED