This file contains 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