Created
March 19, 2018 15:32
-
-
Save sebastiantecsi/2011faf2c47c4795056ba45723e768ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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