I just wondered if it was possible to use Converge to migrate data from a custom table? Basically we have a config table that holds several values that we use to configure access to dynamics CRM etc so just wondered if it was possible to add code so that we can synch any changes to this using Converge
I'm afraid there's not a way to extend Converge in that way.
If you just wanted to slot an extra event in during the merge, then you could add an $http.post function into the chain in edit.controller.js (App_Plugins/Converge/backoffice/mergeFromRemote). That could fire an ApiController method where you could do your synchronisation. But, nothing would show in the comparison table.
Custom Table migration
Hi Stuart,
I just wondered if it was possible to use Converge to migrate data from a custom table? Basically we have a config table that holds several values that we use to configure access to dynamics CRM etc so just wondered if it was possible to add code so that we can synch any changes to this using Converge
Cheers Huw
Hi Huw,
I'm afraid there's not a way to extend Converge in that way.
If you just wanted to slot an extra event in during the merge, then you could add an $http.post function into the chain in edit.controller.js (App_Plugins/Converge/backoffice/mergeFromRemote). That could fire an ApiController method where you could do your synchronisation. But, nothing would show in the comparison table.
Stuart.
That should be ok actually, i'll give that a try :) Thanks for the tip.
is working on a reply...