Skip to content

Commit 5fc2e4d

Browse files
author
gdgate
authored
Merge pull request #1704 from sangtm/TMA-1687-Theme-syncing
FEATURE:TMA-1687 - Release/Rollout sync theme object and bump version to 3.7.24 Reviewed-by: <phong.nguyen-duy@gooddata.com> https://github.com/phong-nguyen-duy
2 parents 375f870 + a352b1d commit 5fc2e4d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.23
1+
3.7.24

lib/gooddata/lcm/actions/collect_tagged_objects.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ def call(params)
5050
if transfer_all
5151
vizs = MdObject.query('visualizationObject', MdObject, client: development_client, project: from_project)
5252
viz_widgets = MdObject.query('visualizationWidget', MdObject, client: development_client, project: from_project)
53-
objects = (from_project.reports.to_a + from_project.metrics.to_a + from_project.variables.to_a + vizs.to_a + viz_widgets.to_a).map(&:uri)
53+
theme = MdObject.query('theme', MdObject, client: development_client, project: from_project)
54+
objects = (from_project.reports.to_a + from_project.metrics.to_a + from_project.variables.to_a + vizs.to_a + viz_widgets.to_a + theme.to_a).map(&:uri)
5455
elsif production_tags.any?
5556
objects = from_project.find_by_tag(production_tags)
5657
end

0 commit comments

Comments
 (0)