workarea-admin 3.5.0.beta.1 → 3.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/workarea/admin/config.js.erb +12 -4
- data/app/assets/javascripts/workarea/admin/modules/impersonation_notification.js +1 -3
- data/app/assets/javascripts/workarea/admin/modules/selects.js +11 -1
- data/app/assets/javascripts/workarea/admin/modules/timeline_report_chart.js +69 -5
- data/app/assets/javascripts/workarea/admin/modules/toggle_elements.js +2 -2
- data/app/assets/javascripts/workarea/admin/modules/tooltips.js +18 -3
- data/app/assets/javascripts/workarea/admin/templates/chart_legend.jst.ejs +2 -1
- data/app/assets/stylesheets/workarea/admin/application.scss.erb +1 -0
- data/app/assets/stylesheets/workarea/admin/components/_button.scss +7 -0
- data/app/assets/stylesheets/workarea/admin/components/_chart_legend.scss +18 -1
- data/app/assets/stylesheets/workarea/admin/components/_timeline_report.scss +30 -0
- data/app/assets/stylesheets/workarea/admin/settings/_grid.scss +1 -0
- data/app/controllers/workarea/admin/content_assets_controller.rb +1 -3
- data/app/controllers/workarea/admin/custom_events_controller.rb +41 -0
- data/app/controllers/workarea/admin/data_file_imports_controller.rb +1 -1
- data/app/controllers/workarea/admin/guest_browsings_controller.rb +1 -2
- data/app/controllers/workarea/admin/segmentables_controller.rb +12 -0
- data/app/helpers/workarea/admin/activities_helper.rb +1 -1
- data/app/helpers/workarea/admin/application_helper.rb +15 -0
- data/app/helpers/workarea/admin/facets_helper.rb +3 -0
- data/app/helpers/workarea/admin/icons_helper.rb +12 -3
- data/app/helpers/workarea/admin/segments_helper.rb +12 -1
- data/app/view_models/workarea/admin/alerts_view_model.rb +12 -1
- data/app/view_models/workarea/admin/reports/timeline_view_model.rb +77 -13
- data/app/view_models/workarea/admin/segment_view_model.rb +15 -0
- data/app/views/layouts/workarea/admin/application.html.haml +8 -2
- data/app/views/workarea/admin/activities/_create.html.haml +1 -1
- data/app/views/workarea/admin/activities/_destroy.html.haml +1 -1
- data/app/views/workarea/admin/activities/_update.html.haml +1 -1
- data/app/views/workarea/admin/catalog_categories/_cards.html.haml +1 -1
- data/app/views/workarea/admin/catalog_categories/index.html.haml +1 -1
- data/app/views/workarea/admin/catalog_products/_cards.html.haml +1 -1
- data/app/views/workarea/admin/catalog_products/index.html.haml +1 -1
- data/app/views/workarea/admin/content/_card.html.haml +3 -0
- data/app/views/workarea/admin/content/_edit.html.haml +11 -3
- data/app/views/workarea/admin/content/_form.html.haml +8 -1
- data/app/views/workarea/admin/content_assets/edit.html.haml +6 -1
- data/app/views/workarea/admin/content_assets/new.html.haml +6 -1
- data/app/views/workarea/admin/content_blocks/_asset.html.haml +3 -2
- data/app/views/workarea/admin/content_pages/_cards.html.haml +1 -1
- data/app/views/workarea/admin/content_pages/index.html.haml +1 -1
- data/app/views/workarea/admin/data_file_imports/new.html.haml +1 -1
- data/app/views/workarea/admin/insights/_cold_searches.html.haml +1 -1
- data/app/views/workarea/admin/insights/_hot_searches.html.haml +1 -1
- data/app/views/workarea/admin/insights/_searches_to_improve.html.haml +1 -1
- data/app/views/workarea/admin/insights/_star_searches.html.haml +1 -1
- data/app/views/workarea/admin/insights/_trending_searches.html.haml +1 -1
- data/app/views/workarea/admin/navigation_menus/index.html.haml +1 -1
- data/app/views/workarea/admin/pricing_discounts/_cards.html.haml +3 -1
- data/app/views/workarea/admin/pricing_discounts/edit.html.haml +16 -5
- data/app/views/workarea/admin/pricing_discounts/index.html.haml +1 -1
- data/app/views/workarea/admin/releases/edit.html.haml +1 -1
- data/app/views/workarea/admin/releases/index.html.haml +25 -0
- data/app/views/workarea/admin/releases/list.html.haml +2 -2
- data/app/views/workarea/admin/reports/timeline.html.haml +89 -1
- data/app/views/workarea/admin/search_customizations/_cards.html.haml +1 -1
- data/app/views/workarea/admin/search_customizations/index.html.haml +1 -1
- data/app/views/workarea/admin/segment_rules/fields/_last_order.html.haml +2 -1
- data/app/views/workarea/admin/segment_rules/fields/_revenue.html.haml +2 -3
- data/app/views/workarea/admin/segment_rules/fields/_traffic_referrer.html.haml +12 -6
- data/app/views/workarea/admin/segment_rules/summaries/_last_order.html.haml +4 -1
- data/app/views/workarea/admin/segment_rules/summaries/_traffic_referrer.html.haml +2 -10
- data/app/views/workarea/admin/segmentables/index.html.haml +46 -0
- data/app/views/workarea/admin/segments/_cards.html.haml +21 -0
- data/app/views/workarea/admin/segments/_publish.html.haml +2 -2
- data/app/views/workarea/admin/shared/_active_field.html.haml +5 -0
- data/app/views/workarea/admin/status_report_mailer/report.html.haml +5 -0
- data/app/views/workarea/admin/toolbar/show.html.haml +1 -0
- data/app/views/workarea/admin/users/index.html.haml +1 -0
- data/config/locales/en.yml +74 -17
- data/config/routes.rb +3 -0
- data/test/helpers/workarea/admin/application_helper_test.rb +24 -0
- data/test/helpers/workarea/admin/facets_helper_test.rb +28 -0
- data/test/integration/workarea/admin/assets_integration_test.rb +4 -2
- data/test/integration/workarea/admin/custom_events_integration_test.rb +54 -0
- data/test/integration/workarea/admin/data_file_imports_integration_test.rb +8 -0
- data/test/integration/workarea/admin/fulfillment_skus_integration_test.rb +2 -2
- data/test/system/workarea/admin/alerts_system_test.rb +7 -3
- data/test/system/workarea/admin/content_system_test.rb +46 -0
- data/test/system/workarea/admin/guest_browsing_system_test.rb +1 -1
- data/test/system/workarea/admin/orders_system_test.rb +3 -3
- data/test/system/workarea/admin/payment_transactions_system_test.rb +3 -3
- data/test/system/workarea/admin/reports_system_test.rb +50 -1
- data/test/system/workarea/admin/segments_system_test.rb +32 -4
- data/test/view_models/workarea/admin/reports/timeline_view_model_test.rb +32 -1
- metadata +14 -8
@@ -79,6 +79,14 @@ module Workarea
|
|
79
79
|
|
80
80
|
file = create_tempfile(response.body, extension: file_type)
|
81
81
|
assert(IO.read(file.path).present?)
|
82
|
+
assert_equal(
|
83
|
+
"#{MIME::Types.type_for(file_type).first.to_s}; charset=utf-8",
|
84
|
+
response.headers['Content-Type']
|
85
|
+
)
|
86
|
+
assert_equal(
|
87
|
+
%(attachment; filename="catalog product.#{file_type}"),
|
88
|
+
response.headers['Content-Disposition']
|
89
|
+
)
|
82
90
|
|
83
91
|
assert_no_changes 'Catalog::Product.first' do
|
84
92
|
post admin.data_file_imports_path,
|
@@ -10,7 +10,7 @@ module Workarea
|
|
10
10
|
params: {
|
11
11
|
sku: {
|
12
12
|
id: 'SKU1',
|
13
|
-
policy: '
|
13
|
+
policy: 'shipping',
|
14
14
|
}
|
15
15
|
}
|
16
16
|
|
@@ -19,7 +19,7 @@ module Workarea
|
|
19
19
|
|
20
20
|
sku = Fulfillment::Sku.first
|
21
21
|
assert_equal('SKU1', sku.id)
|
22
|
-
assert_equal('
|
22
|
+
assert_equal('shipping', sku.policy)
|
23
23
|
end
|
24
24
|
|
25
25
|
def test_update
|
@@ -6,8 +6,10 @@ module Workarea
|
|
6
6
|
include Admin::IntegrationTest
|
7
7
|
|
8
8
|
def test_admins_see_a_list_of_alerts
|
9
|
+
segment = create_segment
|
10
|
+
|
9
11
|
create_product(images: [], description: nil)
|
10
|
-
create_product(variants: [])
|
12
|
+
create_product(variants: [], active_segment_ids: [segment.id])
|
11
13
|
create_product(variants: [{ sku: 'NODETAILS' }])
|
12
14
|
create_product(
|
13
15
|
variants: [
|
@@ -19,9 +21,10 @@ module Workarea
|
|
19
21
|
create_release(name: 'Foo', publish_at: 1.hour.from_now)
|
20
22
|
create_inventory(id: 'NODETAILS', policy: :standard, available: 1)
|
21
23
|
|
24
|
+
segment.destroy!
|
22
25
|
visit admin.root_path
|
23
|
-
assert(page.has_content?('
|
24
|
-
find('button', text: '
|
26
|
+
assert(page.has_content?('10 Alerts'))
|
27
|
+
find('button', text: '10 Alerts').hover
|
25
28
|
|
26
29
|
within '#alert_menu' do
|
27
30
|
assert(page.has_content?('1 empty category'))
|
@@ -32,6 +35,7 @@ module Workarea
|
|
32
35
|
assert(page.has_content?('1 product with low inventory'))
|
33
36
|
assert(page.has_content?('2 products with variants missing details'))
|
34
37
|
assert(page.has_content?('1 product with inconsistent variant details'))
|
38
|
+
assert(page.has_content?(t('workarea.admin.layout.alert.missing_segments', count: 1)))
|
35
39
|
assert_match(/Foo publishes on/, page.text)
|
36
40
|
end
|
37
41
|
|
@@ -63,6 +63,52 @@ module Workarea
|
|
63
63
|
assert(page.has_selector?('.ui-sortable'))
|
64
64
|
end
|
65
65
|
|
66
|
+
def test_active_by_segment
|
67
|
+
create_life_cycle_segments
|
68
|
+
create_content(name: 'home_page')
|
69
|
+
|
70
|
+
visit admin.content_index_path
|
71
|
+
click_link 'Home Page'
|
72
|
+
within '.card--content' do
|
73
|
+
click_link 'Content'
|
74
|
+
end
|
75
|
+
|
76
|
+
click_link 'add_new_block'
|
77
|
+
click_link 'HTML'
|
78
|
+
|
79
|
+
fill_in 'block[data][html]', with: '<h1>Some Content!</h1>'
|
80
|
+
click_button 'create_block'
|
81
|
+
assert(page.has_content?('Success'))
|
82
|
+
|
83
|
+
find('.content-block-list__name', text: 'HTML').click
|
84
|
+
find('.tabs__menu-link', text: t('workarea.admin.content.form.display')).click
|
85
|
+
|
86
|
+
within '.tabs__panel' do
|
87
|
+
find('.select2-selection--multiple').click
|
88
|
+
end
|
89
|
+
|
90
|
+
find('.select2-results__option:first-of-type').click
|
91
|
+
|
92
|
+
find('body').click # close the select2 UI
|
93
|
+
|
94
|
+
click_button t('workarea.admin.form.save_changes')
|
95
|
+
assert(page.has_content?('Success'))
|
96
|
+
|
97
|
+
find('.content-block-list__name', text: 'HTML').click
|
98
|
+
click_link t('workarea.admin.content.form.display')
|
99
|
+
|
100
|
+
assert_selector('.select2-selection__choice')
|
101
|
+
find('.select2-selection__choice__remove').click
|
102
|
+
|
103
|
+
click_button t('workarea.admin.form.save_changes')
|
104
|
+
assert(page.has_content?('Success'))
|
105
|
+
|
106
|
+
find('.content-block-list__name', text: 'HTML').click
|
107
|
+
click_link t('workarea.admin.content.form.display')
|
108
|
+
|
109
|
+
refute_selector('.select2-selection__choice')
|
110
|
+
end
|
111
|
+
|
66
112
|
def test_managing_content_blocks_for_a_release
|
67
113
|
home = create_content(name: 'home_page', blocks: [])
|
68
114
|
release = create_release(name: 'Foo')
|
@@ -57,9 +57,9 @@ module Workarea
|
|
57
57
|
|
58
58
|
def test_payment
|
59
59
|
Workarea.config.checkout_payment_action = {
|
60
|
-
|
61
|
-
|
62
|
-
|
60
|
+
shipping: 'authorize!',
|
61
|
+
partial_shipping: 'authorize!',
|
62
|
+
no_shipping: 'authorize!'
|
63
63
|
}
|
64
64
|
|
65
65
|
order = create_placed_order
|
@@ -7,9 +7,9 @@ module Workarea
|
|
7
7
|
|
8
8
|
def test_viewing_transactions
|
9
9
|
Workarea.config.checkout_payment_action = {
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
shipping: 'authorize!',
|
11
|
+
partial_shipping: 'authorize!',
|
12
|
+
no_shipping: 'authorize!'
|
13
13
|
}
|
14
14
|
|
15
15
|
order = create_placed_order(id: 'FOO')
|
@@ -473,11 +473,60 @@ module Workarea
|
|
473
473
|
end
|
474
474
|
|
475
475
|
def test_reports_chart
|
476
|
+
yesterday = 1.day.ago
|
477
|
+
last_week = 1.week.ago
|
478
|
+
|
479
|
+
create_release(name: 'Foo Release', published_at: yesterday)
|
480
|
+
|
481
|
+
visit admin.timeline_report_path
|
482
|
+
|
476
483
|
# Since we don't explicitly depend on Chart.js, but rather depend on
|
477
484
|
# ChartKick which depends on Chart.js, we want to make sure the library
|
478
485
|
# still works as we upgrade ChartKick.
|
479
|
-
visit admin.timeline_report_path
|
480
486
|
assert_match(/class=('|")chartjs-render-monitor/, page.body)
|
487
|
+
|
488
|
+
within '.timeline-report__sidebar' do
|
489
|
+
assert_text 'Foo Release'
|
490
|
+
click_link 'Foo Release'
|
491
|
+
end
|
492
|
+
|
493
|
+
within '.tooltipster-box' do
|
494
|
+
assert_text 'Foo Release'
|
495
|
+
end
|
496
|
+
|
497
|
+
find('body').click # close tooltip
|
498
|
+
|
499
|
+
click_link t('workarea.admin.reports.timeline.add_custom')
|
500
|
+
|
501
|
+
within '.tooltipster-box' do
|
502
|
+
fill_in 'custom_event[name]', with: 'Foo Event'
|
503
|
+
fill_in 'custom_event_occurred_at_date', with: yesterday.strftime('%Y-%m-%d')
|
504
|
+
click_button t('workarea.admin.reports.timeline.add_custom_event')
|
505
|
+
end
|
506
|
+
|
507
|
+
within '.timeline-report__event-group' do
|
508
|
+
assert_text 'Foo Release'
|
509
|
+
assert_text 'Foo Event'
|
510
|
+
click_link 'Foo Event'
|
511
|
+
end
|
512
|
+
|
513
|
+
within '.tooltipster-box' do
|
514
|
+
fill_in 'custom_event[name]', with: 'Bar Event'
|
515
|
+
fill_in t('workarea.admin.js.datetime_picker.date'), with: last_week.strftime('%Y-%m-%d')
|
516
|
+
click_button t('workarea.admin.reports.timeline.update_event')
|
517
|
+
end
|
518
|
+
|
519
|
+
within '.timeline-report__event-group:first-of-type' do
|
520
|
+
refute_text 'Foo Release'
|
521
|
+
refute_text 'Foo Event'
|
522
|
+
assert_text 'Bar Event'
|
523
|
+
end
|
524
|
+
|
525
|
+
within '.timeline-report__event-group:last-of-type' do
|
526
|
+
assert_text 'Foo Release'
|
527
|
+
refute_text 'Foo Event'
|
528
|
+
refute_text 'Bar Event'
|
529
|
+
end
|
481
530
|
end
|
482
531
|
end
|
483
532
|
end
|
@@ -47,11 +47,11 @@ module Workarea
|
|
47
47
|
end
|
48
48
|
|
49
49
|
def test_managing_active_by_segment
|
50
|
-
|
51
|
-
|
52
|
-
|
50
|
+
create_segment(name: 'Foo')
|
51
|
+
bar_segment = create_segment(name: 'Bar')
|
52
|
+
create_segment(name: 'Baz')
|
53
53
|
|
54
|
-
category = create_category(active: false, active_segment_ids: [])
|
54
|
+
category = create_category(name: 'Test Category', active: false, active_segment_ids: [])
|
55
55
|
visit admin.edit_catalog_category_path(category)
|
56
56
|
|
57
57
|
within '.active-field' do
|
@@ -95,6 +95,34 @@ module Workarea
|
|
95
95
|
|
96
96
|
assert_selector('.select2-selection__choice', text: 'Bar')
|
97
97
|
assert_selector('.select2-selection__choice', text: 'Baz')
|
98
|
+
|
99
|
+
visit admin.segment_path(bar_segment)
|
100
|
+
assert_content('Test Category')
|
101
|
+
click_link t('workarea.admin.segments.cards.segmentables.header')
|
102
|
+
assert_content('Test Category')
|
103
|
+
end
|
104
|
+
|
105
|
+
def test_publishing_by_segment
|
106
|
+
create_segment(name: 'Bar')
|
107
|
+
visit admin.create_catalog_categories_path
|
108
|
+
fill_in 'category[name]', with: 'Test Category'
|
109
|
+
click_button 'save_setup'
|
110
|
+
|
111
|
+
assert(page.has_content?('Success'))
|
112
|
+
click_link t('workarea.admin.create_catalog_categories.workflow.skip_this')
|
113
|
+
click_link t('workarea.admin.create_catalog_categories.workflow.skip_this')
|
114
|
+
click_link t('workarea.admin.create_catalog_categories.workflow.skip_this')
|
115
|
+
|
116
|
+
|
117
|
+
find('#publish-segments').click
|
118
|
+
assert_content(t('workarea.admin.segments.publish.description'))
|
119
|
+
find('.select2-selection--multiple').click
|
120
|
+
find('.select2-results__option', text: 'Bar').click
|
121
|
+
click_button 'publish'
|
122
|
+
|
123
|
+
assert(page.has_content?('Success'))
|
124
|
+
click_link t('workarea.admin.cards.attributes.title')
|
125
|
+
assert_content('Bar')
|
98
126
|
end
|
99
127
|
|
100
128
|
def test_insights
|
@@ -23,7 +23,20 @@ module Workarea
|
|
23
23
|
customers: 13
|
24
24
|
)
|
25
25
|
|
26
|
-
create_release(
|
26
|
+
create_release(
|
27
|
+
name: 'Foo Release',
|
28
|
+
published_at: Time.zone.local(2018, 1, 1)
|
29
|
+
)
|
30
|
+
|
31
|
+
Workarea::Reports::CustomEvent.create!(
|
32
|
+
name: 'Foo Event',
|
33
|
+
occurred_at: Time.zone.local(2018, 1, 2, 12)
|
34
|
+
);
|
35
|
+
|
36
|
+
Workarea::Reports::CustomEvent.create!(
|
37
|
+
name: 'Bar Event',
|
38
|
+
occurred_at: Time.zone.local(2018, 1, 2, 6)
|
39
|
+
);
|
27
40
|
|
28
41
|
travel_to Time.zone.local(2018, 1, 3)
|
29
42
|
end
|
@@ -41,6 +54,7 @@ module Workarea
|
|
41
54
|
assert_equal(24, view_model.summary[:units_sold])
|
42
55
|
assert_equal(16, view_model.summary[:customers])
|
43
56
|
assert_equal(1, view_model.summary[:releases])
|
57
|
+
assert_equal(2, view_model.summary[:custom_events])
|
44
58
|
end
|
45
59
|
|
46
60
|
def test_graph_data
|
@@ -69,6 +83,23 @@ module Workarea
|
|
69
83
|
assert_equal({ x: labels.second.to_time, y: 13 }, datasets[:customers].second)
|
70
84
|
assert_equal({ x: labels.third.to_time, y: 1 }, datasets[:releases].third)
|
71
85
|
assert_equal({ x: labels.second.to_time, y: 0 }, datasets[:releases].second)
|
86
|
+
assert_equal({ x: labels.second.to_time, y: 2 }, datasets[:custom_events].second)
|
87
|
+
end
|
88
|
+
|
89
|
+
def test_events
|
90
|
+
report = Workarea::Reports::SalesOverTime.new(
|
91
|
+
starts_at: 2.days.ago,
|
92
|
+
group_by: 'day'
|
93
|
+
)
|
94
|
+
|
95
|
+
view_model = TimelineViewModel.wrap(report)
|
96
|
+
|
97
|
+
assert_equal(1, view_model.events[Time.zone.local(2018, 1, 1).to_date].count)
|
98
|
+
assert_equal(2, view_model.events[Time.zone.local(2018, 1, 2).to_date].count)
|
99
|
+
|
100
|
+
assert_equal('Foo Release', view_model.events[Time.zone.local(2018, 1, 1).to_date].first.name)
|
101
|
+
assert_equal('Bar Event', view_model.events[Time.zone.local(2018, 1, 2).to_date].first.name)
|
102
|
+
assert_equal('Foo Event', view_model.events[Time.zone.local(2018, 1, 2).to_date].second.name)
|
72
103
|
end
|
73
104
|
end
|
74
105
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.0
|
4
|
+
version: 3.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Crouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea-core
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.5.0
|
19
|
+
version: 3.5.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.5.0
|
26
|
+
version: 3.5.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: workarea-storefront
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.5.0
|
33
|
+
version: 3.5.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.5.0
|
40
|
+
version: 3.5.0
|
41
41
|
description: Provides site administration functionality for the Workarea Commerce
|
42
42
|
Platform.
|
43
43
|
email:
|
@@ -371,6 +371,7 @@ files:
|
|
371
371
|
- app/assets/stylesheets/workarea/admin/components/_takeover.scss
|
372
372
|
- app/assets/stylesheets/workarea/admin/components/_text_box.scss
|
373
373
|
- app/assets/stylesheets/workarea/admin/components/_text_button.scss
|
374
|
+
- app/assets/stylesheets/workarea/admin/components/_timeline_report.scss
|
374
375
|
- app/assets/stylesheets/workarea/admin/components/_toggle_button.scss
|
375
376
|
- app/assets/stylesheets/workarea/admin/components/_top_help_articles.scss
|
376
377
|
- app/assets/stylesheets/workarea/admin/components/_view.scss
|
@@ -446,6 +447,7 @@ files:
|
|
446
447
|
- app/controllers/workarea/admin/create_releases_controller.rb
|
447
448
|
- app/controllers/workarea/admin/create_segments_controller.rb
|
448
449
|
- app/controllers/workarea/admin/create_users_controller.rb
|
450
|
+
- app/controllers/workarea/admin/custom_events_controller.rb
|
449
451
|
- app/controllers/workarea/admin/dashboards_controller.rb
|
450
452
|
- app/controllers/workarea/admin/data_file_exports_controller.rb
|
451
453
|
- app/controllers/workarea/admin/data_file_imports_controller.rb
|
@@ -488,6 +490,7 @@ files:
|
|
488
490
|
- app/controllers/workarea/admin/searches_controller.rb
|
489
491
|
- app/controllers/workarea/admin/segment_overrides_controller.rb
|
490
492
|
- app/controllers/workarea/admin/segment_rules_controller.rb
|
493
|
+
- app/controllers/workarea/admin/segmentables_controller.rb
|
491
494
|
- app/controllers/workarea/admin/segments_controller.rb
|
492
495
|
- app/controllers/workarea/admin/shipping_services_controller.rb
|
493
496
|
- app/controllers/workarea/admin/shippings_controller.rb
|
@@ -1114,6 +1117,7 @@ files:
|
|
1114
1117
|
- app/views/workarea/admin/segment_rules/summaries/_sessions.html.haml
|
1115
1118
|
- app/views/workarea/admin/segment_rules/summaries/_tags.html.haml
|
1116
1119
|
- app/views/workarea/admin/segment_rules/summaries/_traffic_referrer.html.haml
|
1120
|
+
- app/views/workarea/admin/segmentables/index.html.haml
|
1117
1121
|
- app/views/workarea/admin/segments/_cards.html.haml
|
1118
1122
|
- app/views/workarea/admin/segments/_publish.html.haml
|
1119
1123
|
- app/views/workarea/admin/segments/edit.html.haml
|
@@ -1281,6 +1285,7 @@ files:
|
|
1281
1285
|
- test/dummy/public/favicon.ico
|
1282
1286
|
- test/dummy/script/rails
|
1283
1287
|
- test/helpers/workarea/admin/application_helper_test.rb
|
1288
|
+
- test/helpers/workarea/admin/facets_helper_test.rb
|
1284
1289
|
- test/helpers/workarea/admin/icons_helper_test.rb
|
1285
1290
|
- test/helpers/workarea/admin/imports_helper_test.rb
|
1286
1291
|
- test/helpers/workarea/admin/insights_helper_test.rb
|
@@ -1312,6 +1317,7 @@ files:
|
|
1312
1317
|
- test/integration/workarea/admin/create_releases_integration_test.rb
|
1313
1318
|
- test/integration/workarea/admin/create_segments_integration_test.rb
|
1314
1319
|
- test/integration/workarea/admin/create_users_integration_test.rb
|
1320
|
+
- test/integration/workarea/admin/custom_events_integration_test.rb
|
1315
1321
|
- test/integration/workarea/admin/data_file_exports_integration_test.rb
|
1316
1322
|
- test/integration/workarea/admin/data_file_imports_integration_test.rb
|
1317
1323
|
- test/integration/workarea/admin/direct_uploads_integration_test.rb
|
@@ -1509,9 +1515,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1509
1515
|
version: '0'
|
1510
1516
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1511
1517
|
requirements:
|
1512
|
-
- - "
|
1518
|
+
- - ">="
|
1513
1519
|
- !ruby/object:Gem::Version
|
1514
|
-
version:
|
1520
|
+
version: '0'
|
1515
1521
|
requirements: []
|
1516
1522
|
rubygems_version: 3.0.6
|
1517
1523
|
signing_key:
|