mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 09:15:27 +08:00 
			
		
		
		
	started working on stripping claims from token
This commit is contained in:
		@@ -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; }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user