the bola v2 website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

revisions.php 920B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Revisions
  6. |--------------------------------------------------------------------------
  7. |
  8. | Revisions must be enabled per-collection by adding `revisions: true` to
  9. | the collection's yaml file. Here you may disable revisions completely
  10. | in one go. This is useful for disabling revisions per environment.
  11. |
  12. */
  13. 'enabled' => env('STATAMIC_REVISIONS_ENABLED', false),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Storage Path
  17. |--------------------------------------------------------------------------
  18. |
  19. | This is the directory where your revision files will be located. Within
  20. | here, they will be further organized into collection, site, ID, etc.
  21. |
  22. */
  23. 'path' => storage_path('statamic/revisions'),
  24. ];