Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@sebastiantecsi
Created March 19, 2018 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastiantecsi/2011faf2c47c4795056ba45723e768ff to your computer and use it in GitHub Desktop.
Save sebastiantecsi/2011faf2c47c4795056ba45723e768ff to your computer and use it in GitHub Desktop.
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