Skip to content

Commit

Permalink
Adds support for client claims configuration (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyal authored and AleF83 committed Oct 2, 2019
1 parent c402d91 commit bf1f246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static IEnumerable<Client> GetClients()
}
configStr = File.ReadAllText(configFilePath);
}
var configClients = JsonConvert.DeserializeObject<IEnumerable<Client>>(configStr, new SecretConverter());
var configClients = JsonConvert.DeserializeObject<IEnumerable<Client>>(configStr, new SecretConverter(), new ClaimJsonConverter());
return configClients;
}

Expand Down

0 comments on commit bf1f246

Please sign in to comment.