module Ecoportal module API class V1 class Person def sync consolidate! end def reset_details! doc["details"] = JSON.parse(original_doc["details"]) end def consolidate_details! original_doc["details"] = JSON.parse(doc["details"]) end end end end end