Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/config/activity.php
7382 views
1
<?php
2
3
return [
4
// The number of days elapsed before old activity log entries are deleted.
5
'prune_days' => env('APP_ACTIVITY_PRUNE_DAYS', 90),
6
7
// If set to true activity log entries generated by an admin user that is not also
8
// a part of the server in question will be hidden from the activity logs API response.
9
//
10
// Activity will still be properly tracked, just not displayed.
11
'hide_admin_activity' => env('APP_ACTIVITY_HIDE_ADMIN', false),
12
];
13
14