[WIP] Setup of skeleton

This commit is contained in:
Ludovic CANDELLIER
2020-03-25 00:08:27 +01:00
parent baf8e13c25
commit 36267139a1
377 changed files with 18248 additions and 26 deletions

74
config/gdpr.php Normal file
View File

@@ -0,0 +1,74 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Prefix URI
|--------------------------------------------------------------------------
|
| This URI is used to prefix all GDPR routes. You may change this value as
| required, but don't forget the update your forms accordingly.
|
*/
'uri' => 'gdpr',
/*
|--------------------------------------------------------------------------
| Route Middleware
|--------------------------------------------------------------------------
|
| These middleware are run during every request to the GDPR routes. Please
| keep in mind to only allow authenticated users to access the routes.
|
*/
'middleware' => [
'web',
'auth',
],
/*
|--------------------------------------------------------------------------
| Re-authentication
|--------------------------------------------------------------------------
|
| Only authenticated users should be able to download their data.
| Re-authentication is recommended to prevent information leakage.
|
*/
're-authenticate' => true,
/*
|--------------------------------------------------------------------------
| Cleanup Strategy
|--------------------------------------------------------------------------
|
| This strategy will be used to clean up inactive users. Do not forget to
| mention these thresholds in your terms and conditions.
|
*/
'cleanup' => [
'strategy' => 'Soved\Laravel\Gdpr\Jobs\Cleanup\Strategies\DefaultStrategy',
'defaultStrategy' => [
/*
* The number of months for which inactive users must be kept.
*/
'keepInactiveUsersForMonths' => 6,
/*
* The number of days before deletion at which inactive users will be notified.
*/
'notifyUsersDaysBeforeDeletion' => 14,
],
],
];