This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user