it might be a UI thing , can you look in the browser and see what teh results of the call to umbraco/backoffice/uSync/uSyncDashboardApi/GetSettings
look like?
this should contain the handler sets - it might be a case thing on the object (in which case i probably can guess what it is) or it might be something else more internal.
its because you will have some code overriding the JSON formatting - and we haven't marked up teh handler set class correctly to not let that override break the return.
Probibly something like this :
JsonConvert.DefaultSettings = () => new JsonSerializerSettings
{
ContractResolver = new CamelCasePropertyNamesContractResolver()
};
uSync should be fine and will be working but we need to update an attribute on the class to force the result into upper case on the name.
uSync - Handlers config
Hi,
I have a problem with the Handlers settings. Names and the Handlers list are not displayed.
Don't know where the problem is? ( no logs )
Config file uSync8.config contain default HandlerSets.
Umrbaco8.12.1 + uSyncComplete8.9.2
Thanks.
Hi,
it might be a UI thing , can you look in the browser and see what teh results of the call to
umbraco/backoffice/uSync/uSyncDashboardApi/GetSettings
look like?this should contain the handler sets - it might be a case thing on the object (in which case i probably can guess what it is) or it might be something else more internal.
Result look ok:
I manually copied the new files of the Umbraco and App_Plugins/uSync* folders and the result is the same.
Is there something in the database?
Yeah
its because you will have some code overriding the JSON formatting - and we haven't marked up teh handler set class correctly to not let that override break the return.
Probibly something like this :
uSync should be fine and will be working but we need to update an attribute on the class to force the result into upper case on the name.
Yes, this is problem :)
Thanks.
will be fixed in the next release https://github.com/KevinJump/uSync8/issues/212
is working on a reply...