Skip to content

Commit

Permalink
Doubled default revision limit
Browse files Browse the repository at this point in the history
Due to potential increase of revision entries due to auto-changes.
  • Loading branch information
ssddanbrown committed Aug 23, 2022
1 parent b86ee6d commit d134639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.example.complete
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ APP_DEFAULT_DARK_MODE=false
# Page revision limit
# Number of page revisions to keep in the system before deleting old revisions.
# If set to 'false' a limit will not be enforced.
REVISION_LIMIT=50
REVISION_LIMIT=100

# Recycle Bin Lifetime
# The number of days that content will remain in the recycle bin before
Expand Down
2 changes: 1 addition & 1 deletion app/Config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// The number of revisions to keep in the database.
// Once this limit is reached older revisions will be deleted.
// If set to false then a limit will not be enforced.
'revision_limit' => env('REVISION_LIMIT', 50),
'revision_limit' => env('REVISION_LIMIT', 100),

// The number of days that content will remain in the recycle bin before
// being considered for auto-removal. It is not a guarantee that content will
Expand Down

0 comments on commit d134639

Please sign in to comment.