started working on stripping claims from token

This commit is contained in:
tom.pallister
2016-10-17 20:46:30 +01:00
parent 3d60602c7e
commit 2395736b6b
5 changed files with 62 additions and 5 deletions

View File

@ -1,10 +1,18 @@
namespace Ocelot.Library.Configuration.Yaml
{
using System.Collections.Generic;
public class YamlReRoute
{
public YamlReRoute()
{
AddHeadersToRequest = new Dictionary<string, string>();
}
public string DownstreamTemplate { get; set; }
public string UpstreamTemplate { get; set; }
public string UpstreamHttpMethod { get; set; }
public YamlAuthenticationOptions AuthenticationOptions { get; set; }
public Dictionary<string,string> AddHeadersToRequest { get; set; }
}
}