This commit is contained in:
@@ -51,7 +51,7 @@ UI FEATURE - The ability to customize forms:
|
|||||||
|
|
||||||
|
|
||||||
- Need a FormCustom controller that supports routes for:
|
- Need a FormCustom controller that supports routes for:
|
||||||
- Routes for customization form populating and receiving
|
- #DONE# Routes for customization form populating and receiving
|
||||||
- GET (formkey), gets a FormOptions object that provides the basis for building the form customization view
|
- GET (formkey), gets a FormOptions object that provides the basis for building the form customization view
|
||||||
- Also required at the client is the current form customizations if any which can be gotten from the other route for day to day ops below
|
- Also required at the client is the current form customizations if any which can be gotten from the other route for day to day ops below
|
||||||
- POST (formkey), accepts a FormCustom object that contains the users customization choices only
|
- POST (formkey), accepts a FormCustom object that contains the users customization choices only
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
//If concurrency token specified then check if ours is newer
|
//If concurrency token specified then check if ours is newer
|
||||||
if (concurrencyToken != null)
|
if (concurrencyToken != null)
|
||||||
{
|
{
|
||||||
if (o.ConcurrencyToken != concurrencyToken)
|
if (o.ConcurrencyToken == concurrencyToken)
|
||||||
{
|
{
|
||||||
//returns a code 304 (NOT MODIFIED)
|
//returns a code 304 (NOT MODIFIED)
|
||||||
return StatusCode(304);
|
return StatusCode(304);
|
||||||
|
|||||||
Reference in New Issue
Block a user