⚖️Change Mode
There are three modes available.
Auth Mode
Guest Mode
Secured Mode
By default Guest Mode has enabled.
Option 1 (Locally, Higher priority)
Set $guestMode
, true in related model. This will effect to that model only.
Option 2 (Globally)
You can set guest mode enabled variable true in the config file. This will globally enabled the guest mode.
Secured Guest Mode (Recommended)
The default guest mode relies on user's IP address, which is not ideal for security. For a more secure guest mode, consider enabling the secured guest mode feature.
How it works
Users are required to confirm their email address via a verification link before commenting. This system doesn't interact with the default users
table or the web
auth guard. Instead, it operates through a dedicated guests
table and a custom guest
guard. This ensures that your default authentication system remains unaffected, allowing the package to work seamlessly even on sites that already have an existing authentication setup.
Last updated