Skip to content

Instantly share code, notes, and snippets.

@sebastiantecsi
Created March 19, 2018 15:32
Embed
What would you like to do?
namespace MyExtensions.Pipelines.Demo
{
using Sitecore.Owin.Pipelines.Initialize;
using Owin;
public class DemoCodeOWIN : InitializeProcessor
{
public override void Process(InitializeArgs args)
{
ConfigureAuth(args.App);
}
public void ConfigureAuth(IAppBuilder app)
{
// do magic with your app
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment