Skip to content

jcdcdev/Umbraco.Community.DataProtection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

21 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Umbraco.Community.DataProtection

Umbraco Marketplace GitHub License NuGet Downloads Project Website

Simple ASP.NET Core Data Protection for Umbraco CMS.

Data protection keys are stored in the Umbraco database.

Quick Start

Install

dotnet add package Umbraco.Community.DataProtection

Configure

using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.DependencyInjection;

namespace Project.Web;

public class Composer : IComposer
{
    public void Compose(IUmbracoBuilder builder)
    {
        builder.AddUmbracoDataProtection();
    }
}

Contributing

Contributions to this package are most welcome! Please read the Contributing Guidelines.

Acknowledgments (thanks!)