Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Commit

Permalink
Create gdpr config file
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamara committed Aug 4, 2023
1 parent a83927d commit 961754a
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions config/gdpr.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?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,
],
],
];

0 comments on commit 961754a

Please sign in to comment.