You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
Lars Vierbergen ba99eb4468 Add caching for TOS version of a user 5 years ago
Controller Make it possible to specify multiple terms that have to be accepted 6 years ago
DependencyInjection Make it possible to specify multiple terms that have to be accepted 6 years ago
Entity Initial commit 6 years ago
EventListener Add caching for TOS version of a user 5 years ago
Form Make it possible to specify multiple terms that have to be accepted 6 years ago
Resources Add caching for TOS version of a user 5 years ago
.gitignore Initial commit 6 years ago
AuthserverTosBundle.php Initial commit 6 years ago
LICENSE.md Initial commit 6 years ago
README.md Make it possible to specify multiple terms that have to be accepted 6 years ago
composer.json Initial commit 6 years ago
composer.lock Initial commit 6 years ago

README.md

Authserver: Terms of Service plugin

This Authserver plugin that requires users to accept some terms of service before they can use their account.

Installation

./plugin.sh install vierbergenlars/authserver-tos-bundle

For more details, see the Authserver plugin documentation.

Configuration

You can configure the bundle in the authserver app/config/parameters.yml file.

Add a new array key under tos.terms for all terms and conditions that you want to add.

label is the name you want to give the terms

url is the URL where the terms are located

Set tos.version to the version of your terms of service. This number should be increased every time the terms of service change, so users get prompted to accept the new terms. The version of the latest accepted version is stored per user. If the stored number is lower than the configured version, the user is prompted.

Example

tos:
    version: 1
    terms:
        - title: terms of service
          url: http://example.com/tos
        - title: privacy policy
          url: http://example.com/privacy