forked from statamic/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrevisions.php
30 lines (24 loc) · 920 Bytes
/
revisions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
return [
/*
|--------------------------------------------------------------------------
| Revisions
|--------------------------------------------------------------------------
|
| Revisions must be enabled per-collection by adding `revisions: true` to
| the collection's yaml file. Here you may disable revisions completely
| in one go. This is useful for disabling revisions per environment.
|
*/
'enabled' => env('STATAMIC_REVISIONS_ENABLED', false),
/*
|--------------------------------------------------------------------------
| Storage Path
|--------------------------------------------------------------------------
|
| This is the directory where your revision files will be located. Within
| here, they will be further organized into collection, site, ID, etc.
|
*/
'path' => storage_path('statamic/revisions'),
];