DOC Recommend installation of spamprotection (#966)

DOC Recommend installation of spamprotection
This commit is contained in:
Maxime Rainville 2020-05-27 08:55:37 +12:00 committed by GitHub
parent 09ea65edc7
commit f27045ba93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -47,7 +47,8 @@
},
"suggest": {
"colymba/gridfield-bulk-editing-tools": "Allows for bulk management of form submissions",
"silverstripe/gridfieldqueuedexport": "Export large submission as CSV through queued jobs in the background"
"silverstripe/gridfieldqueuedexport": "Export large submission as CSV through queued jobs in the background",
"silverstripe/spamprotection": "Adds support for spam protection to your user forms"
},
"scripts": {
"lint": "phpcs code/ tests/",

View File

@ -27,11 +27,17 @@ See the "require" section of [composer.json](https://github.com/silverstripe/sil
## Installation
```sh
$ composer require silverstripe/userforms
composer require silverstripe/userforms
```
You'll also need to run `dev/build`. You should see a new page type in the CMS 'User Defined Form'. This has a new 'Form' tab which has your form builder.
## Spam protection
This module does not include spam protection out of the box. Without it, it's likely that your submissions could contain a considerable amount of spam. For public facing forms it is encouraged you review and install the following module plus one of the recommended 'verification system' modules outlined in the README.
Read the [SpamProtection Module README](https://github.com/silverstripe/silverstripe-spamprotection/) for details on how to configure this module.
## Documentation
* [Index](docs/en/index.md)