This commit is contained in:
2019-01-16 22:50:47 +00:00
parent fd2b46cc59
commit bebbbb3613
5 changed files with 24 additions and 0 deletions

View File

@@ -70,6 +70,8 @@ namespace raven_integration
//CREATE
dynamic d = new JObject();
d.name = Util.Uniquify("ServerShouldAllowOwnerOnlyRightsUserToPatchOwn TEST WIDGET");
d.notes="blah";
d.customFields = Util.GenerateCustomFieldsJsonString("Meh1");
d.created = DateTime.Now.ToString();
d.dollarAmount = 1.11m;
d.active = true;
@@ -100,6 +102,8 @@ namespace raven_integration
//CREATE
dynamic d = new JObject();
d.name = Util.Uniquify("ServerShouldDisAllowOwnerOnlyRightsUserToPatchNonOwned TEST WIDGET");
d.notes="blah";
d.customFields = Util.GenerateCustomFieldsJsonString("Meh1");
d.created = DateTime.Now.ToString();
d.dollarAmount = 1.11m;
d.active = true;
@@ -137,6 +141,8 @@ namespace raven_integration
//CREATE
dynamic d = new JObject();
d.name = Util.Uniquify("ServerShouldAllowOwnerOnlyRightsUserToPutOwn TEST WIDGET");
d.notes="blah";
d.customFields = Util.GenerateCustomFieldsJsonString("Meh1");
d.created = DateTime.Now.ToString();
d.dollarAmount = 1.11m;
d.active = true;
@@ -170,6 +176,8 @@ namespace raven_integration
//CREATE
dynamic d = new JObject();
d.name = Util.Uniquify("ServerShouldDisAllowOwnerOnlyRightsUserToPutNonOwned TEST WIDGET");
d.notes="blah";
d.customFields = Util.GenerateCustomFieldsJsonString("Meh1");
d.created = DateTime.Now.ToString();
d.dollarAmount = 1.11m;
d.active = true;
@@ -204,6 +212,8 @@ namespace raven_integration
//CREATE
dynamic d = new JObject();
d.name = Util.Uniquify("ServerShouldAllowOwnerOnlyRightsUserToDelete TEST WIDGET");
d.notes="blah";
d.customFields = Util.GenerateCustomFieldsJsonString("Meh1");
d.created = DateTime.Now.ToString();
d.dollarAmount = 1.11m;
d.active = true;
@@ -233,6 +243,8 @@ namespace raven_integration
//CREATE
dynamic d = new JObject();
d.name = Util.Uniquify("ServerShouldDisAllowOwnerOnlyRightsUserToDeleteNonOwned TEST WIDGET");
d.notes="blah";
d.customFields = Util.GenerateCustomFieldsJsonString("Meh1");
d.created = DateTime.Now.ToString();
d.dollarAmount = 1.11m;
d.active = true;