You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a vendr installation has no Stores, there is no push/pull option on the root 'Stores' node - so you can't pull the stores from another existing site.
there should be a 'push/pull' at the root 'Stores' node just like there is for Content and Media when using uSync.Complete
The text was updated successfully, but these errors were encountered:
private SyncLocalItem GetStoreItem(stringid){// only showing the menu for the store varstoreGuid= GetStoreGuid(id);if(storeGuid==null)returnnull;// the isVendrStore proved this was a guid.varstore= _vendrApi.GetStore(storeGuid.Value);if(store==null)returnnull;returnnew SyncLocalItem
{EntityType= VendrConstants.UdiEntityType.Store,Id= store.Id.ToString(),Name= store. Name,Udi= Udi.Create(VendrConstants.UdiEntityType.Store, store.Id)};}
where we return nothing if we can't find the store. guessing we actually do get triggered when the top 'Stores' node is picked, but passed a root value (like -1).
in this case if we return a SyncLocalItem with a root UDI for the stores in it might 'just work'
When a vendr installation has no Stores, there is no push/pull option on the root 'Stores' node - so you can't pull the stores from another existing site.
there should be a 'push/pull' at the root 'Stores' node just like there is for Content and Media when using uSync.Complete
The text was updated successfully, but these errors were encountered: