2022-05-30 01:45:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2022-06-18 21:48:22 +02:00
|
|
|
// The number of days ellapsed before old activity log entries are deleted.
|
2022-05-30 01:45:00 +02:00
|
|
|
'prune_days' => env('APP_ACTIVITY_PRUNE_DAYS', 90),
|
2022-06-18 21:48:22 +02:00
|
|
|
|
|
|
|
// If set to true activity log entries generated by an admin user that is not also
|
|
|
|
// a part of the server in question will be hidden from the activity logs API response.
|
|
|
|
//
|
|
|
|
// Activity will still be properly tracked, just not displayed.
|
|
|
|
'hide_admin_activity' => env('APP_ACTIVITY_HIDE_ADMIN', false),
|
2022-05-30 01:45:00 +02:00
|
|
|
];
|