14 lines
330 B
C#
14 lines
330 B
C#
using LightInject;
|
|
using Umbraco.Core.Models.Identity;
|
|
|
|
namespace Umbraco.Core.Composing.CompositionRoots
|
|
{
|
|
public sealed class CoreMappingProfilesCompositionRoot : ICompositionRoot
|
|
{
|
|
public void Compose(IServiceRegistry container)
|
|
{
|
|
container.Register<IdentityProfile>();
|
|
}
|
|
}
|
|
}
|