Sha256: 6ca68f64e912bac5847439828c4e7d85e4aa8ac88f43fa62bf7109e4b9f5c715
Contents?: true
Size: 552 Bytes
Versions: 111
Compression:
Stored size: 552 Bytes
Contents
export const rhCloudStateWrapper = ( inventoryState = {}, insightsState = {}, hostInsightsState = {} ) => ({ ForemanRhCloud: { inventoryUpload: { ...inventoryState }, InsightsCloudSync: { ...insightsState }, hostInsights: { ...hostInsightsState }, }, }); export const inventoryStateWrapper = innerState => rhCloudStateWrapper(innerState); export const insightsStateWrapper = innerState => rhCloudStateWrapper({}, innerState); export const hostInsightsStateWrapper = innerState => rhCloudStateWrapper({}, {}, innerState);
Version data entries
111 entries across 111 versions & 1 rubygems