This commit is contained in:
2019-01-15 21:42:41 +00:00
parent e94d7be977
commit 72c2b8f4a5
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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);