This commit is contained in:
2018-11-12 18:48:16 +00:00
parent 719b8c4eeb
commit 8e69ae98e2
3 changed files with 6 additions and 6 deletions

View File

@@ -138,8 +138,8 @@ namespace raven_integration
List<string> keys = new List<string>();
keys.AddRange(new string[] { UpdatedLocaleKey });
dynamic d3 = new JObject();
d3.localeId = NewId;
d3.keys = JToken.FromObject(keys);
//d3.localeId = NewId;
d3 = JToken.FromObject(keys);
checkPUTWorked = await Util.PostAsync("Locale/subset", await Util.GetTokenAsync("ClientLimited"), d3.ToString());
Util.ValidateDataReturnResponseOk(checkPUTWorked);

View File

@@ -30,8 +30,8 @@ namespace raven_integration
List<string> keys = new List<string>();
keys.AddRange(new string[] { "HelpLicense", "ClientName" });
dynamic d = new JObject();
d.localeId = 1;
d.keys = JToken.FromObject(keys);
//d.localeId = 1;
d = JToken.FromObject(keys);
//Fetch the values to force RAVEN to track at least these two
a = await Util.PostAsync("Locale/subset", await Util.GetTokenAsync("ClientLimited"), d.ToString());