Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.65 KB

README.md

File metadata and controls

50 lines (37 loc) · 1.65 KB

Limbo Recycle Bin

GitHub license NuGet NuGet Umbraco Marketplace

Limbo Recycle Bin helps you handle your Umbraco recycle bin.

  • It automatically deletes items in the recycle bin that were deleted x days ago. Both content og media.
  • It physical moves trashed media items so that they are not available to download.

Installation

The Umbraco 13 version of this package is only available via NuGet. To install the package, you can use either .NET CLI:

dotnet add package Limbo.Umbraco.RecycleBin --version 13.0.0

or the older NuGet Package Manager:

Install-Package Limbo.Umbraco.RecycleBin -Version 13.0.0

Umbraco 10-12
For the Umbraco 10-12 version of this package, see the v1/main branch instead.

Configuration

To configure the package, add a Limbo:RecycleBin section to your appsettings.json like in the example below:

{
  "Limbo": {
    "RecycleBin": {
      "Content": {
        "Enabled": true,
        "DeleteAfterDays": 30
      },
      "Media": {
        "Enabled": true,
        "DeleteAfterDays": 30
      }
    }
  }
}