limbo-works / Limbo.Umbraco.RecycleBin

RecycleBin package for Umbraco.

Home Page:https://packages.limbo.works/limbo.umbraco.recyclebin/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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
      }
    }
  }
}

About

RecycleBin package for Umbraco.

https://packages.limbo.works/limbo.umbraco.recyclebin/

License:MIT License


Languages

Language:C# 98.3%Language:Batchfile 1.7%