workarea-admin 3.4.39 → 3.4.44

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/workarea/admin/modules/new_navigation_taxons.js +2 -1
  3. data/app/assets/stylesheets/workarea/admin/components/_toggle_button.scss +4 -0
  4. data/app/controllers/workarea/admin/impersonations_controller.rb +2 -1
  5. data/app/helpers/workarea/admin/application_helper.rb +4 -0
  6. data/app/view_models/workarea/admin/product_view_model.rb +5 -8
  7. data/app/views/workarea/admin/catalog_categories/edit.html.haml +3 -0
  8. data/app/views/workarea/admin/catalog_product_images/edit.html.haml +1 -1
  9. data/app/views/workarea/admin/catalog_products/_cards.html.haml +1 -1
  10. data/app/views/workarea/admin/catalog_variants/edit.html.haml +0 -5
  11. data/app/views/workarea/admin/catalog_variants/new.html.haml +0 -5
  12. data/app/views/workarea/admin/navigation_menus/_summary.html.haml +1 -1
  13. data/app/views/workarea/admin/navigation_redirects/index.html.haml +5 -0
  14. data/app/views/workarea/admin/pricing_discounts/properties/_product_attribute.html.haml +1 -1
  15. data/app/views/workarea/admin/shared/_toggle_button.html.haml +1 -1
  16. data/app/views/workarea/admin/toolbar/show.html.haml +1 -0
  17. data/app/views/workarea/admin/users/insights.html.haml +12 -0
  18. data/config/locales/en.yml +19 -5
  19. data/test/integration/workarea/admin/impersonations_integration_test.rb +26 -1
  20. data/test/javascripts/fixtures/existing_navigation_taxon.html.haml +10 -0
  21. data/test/javascripts/new_navigation_taxons_spec.js +12 -1
  22. data/test/system/workarea/admin/impersonation_system_test.rb +2 -5
  23. data/test/view_models/workarea/admin/product_view_model_test.rb +2 -2
  24. metadata +7 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6a212108166042aafd35198dd00a9634a40548133acd4805e50809caf14670b
4
- data.tar.gz: da550878bda42c55340b4cd414a0e771571272fd506cc105850d31d5a7c684e4
3
+ metadata.gz: 4a003c5c06c6e7ebad65a86478c4bbbb40d48041938772cdefcdf84b1d789b66
4
+ data.tar.gz: 165c1102a376250bd6560411198c846b5a926ddc65bae27deac354d48655399f
5
5
  SHA512:
6
- metadata.gz: d36769d2327f453b76806f547d9de8d38a88e903403c7fc33d9abea0174f7d6da2239733d163097410070dab4453a95c94f271733a1810d4f4aa002d5b7c6443
7
- data.tar.gz: 8473245d50289ce340ac32cac7127d142e4302790bf7f333b1f505a3155c5f83c05ca1eeb3f35ef9ee5f7f8430838a6bde182732c992b05d39957ad89c5289ff
6
+ metadata.gz: 337cc3074deb6d2e4bf4c0b89276bf5b5a6d79b8e59218c22b806b69d70419dfc7f6c752883483dcbf711cbfaa60c975786c7d18dfb6cdccf769a409b01963bf
7
+ data.tar.gz: a139b01f60d5660be066ffe4bf5485bf8ba78265af718f690e2f4d86e1bd0063fdb21a07cc2a3a2d8cfa63ef4c92dc630a02a8f7b20e04f5561ff1e1b8c7e5ea
@@ -23,8 +23,9 @@ WORKAREA.registerModule('newNavigationTaxons', (function () {
23
23
  createRemoteSelect = function (event) {
24
24
  var $typeSelect = $(event.currentTarget),
25
25
  $idSelect = $('[name=navigable_id]', event.delegateTarget),
26
+ $section = $typeSelect.closest('[data-new-navigation-taxon]'),
26
27
  settings = getConfig($typeSelect),
27
- selected = $typeSelect.data('newNavigationTaxon');
28
+ selected = $section.data('newNavigationTaxon');
28
29
 
29
30
  if ($idSelect.is('.select2-hidden-accessible') && _.isUndefined(selected)) {
30
31
  destroyRemoteSelect($idSelect);
@@ -20,6 +20,10 @@ $toggle-button-status-negative-color: $red !default;
20
20
  display: inline-block;
21
21
  }
22
22
 
23
+ .toggle-button--disabled {
24
+ opacity: 0.5;
25
+ }
26
+
23
27
  /**
24
28
  * 1. provides positiioning context for `.toggle-button__label`
25
29
  * 2. height + vertical margin = `.text-box` height
@@ -27,7 +27,8 @@ module Workarea
27
27
  self.current_order = nil
28
28
 
29
29
  flash[:success] = t('workarea.admin.users.flash_messages.stopped')
30
- redirect_to user_path(previous_user_id)
30
+ referrer = URI.parse(request.referrer).request_uri rescue nil
31
+ redirect_back_or(referrer.presence || user_path(previous_user_id))
31
32
  end
32
33
  end
33
34
  end
@@ -166,6 +166,10 @@ module Workarea
166
166
  .map { |unit, val| t("workarea.duration.#{unit}", count: val) }
167
167
  .to_sentence
168
168
  end
169
+
170
+ def navigation_redirects_enabled?
171
+ !Rails.application.config.consider_all_requests_local
172
+ end
169
173
  end
170
174
  end
171
175
  end
@@ -42,7 +42,7 @@ module Workarea
42
42
  def storefront_view_model
43
43
  @storefront_view_model ||= Storefront::ProductViewModel.wrap(
44
44
  model,
45
- @options
45
+ options
46
46
  )
47
47
  end
48
48
 
@@ -93,16 +93,13 @@ module Workarea
93
93
  end
94
94
  end
95
95
 
96
- def options
97
- variants.reduce({}) do |memo, variant|
96
+ def variant_details
97
+ variants.each_with_object({}) do |variant, memo|
98
98
  variant.details.each do |name, value|
99
99
  memo[name] ||= []
100
- memo[name] << value
101
- memo[name].flatten!
100
+ memo[name] += Array.wrap(value)
102
101
  memo[name].uniq!
103
102
  end
104
-
105
- memo
106
103
  end
107
104
  end
108
105
 
@@ -125,7 +122,7 @@ module Workarea
125
122
  end
126
123
 
127
124
  def insights
128
- @insights ||= Insights::ProductViewModel.wrap(model, @options)
125
+ @insights ||= Insights::ProductViewModel.wrap(model, options)
129
126
  end
130
127
 
131
128
  def inventory
@@ -60,6 +60,9 @@
60
60
  .property
61
61
  = label_tag 'category_default_sort', t('workarea.admin.fields.default_sort'), class: 'property__name'
62
62
  = select_tag 'category[default_sort]', options_for_select(@category.sort_options, selected: @category.default_sort)
63
+ - if @category.featured_products?
64
+ %span.property__note
65
+ = t('workarea.admin.catalog_categories.edit.default_sort_note')
63
66
 
64
67
  .property
65
68
  = label_tag 'category_terms_facets_list', t('workarea.admin.fields.terms_facets_list'), class: 'property__name'
@@ -25,7 +25,7 @@
25
25
  .product-images__image-group
26
26
  .product-images__image
27
27
  .product-images__image-summary
28
- .product-images__image-summary-container= image_tag product_image_url(@image, :small), alt: "#{@image.option} #{t('workarea.admin.catalog_product_images.edit.image')}", id: @image.option.parameterize, class: 'product-images__image-summary-image'
28
+ .product-images__image-summary-container= image_tag product_image_url(@image, :small), alt: "#{@image.option} #{t('workarea.admin.catalog_product_images.edit.image')}", class: 'product-images__image-summary-image'
29
29
 
30
30
  .section
31
31
  %h2= t('workarea.admin.catalog_product_images.edit.edit_image')
@@ -110,7 +110,7 @@
110
110
  %p.align-center= t('workarea.admin.fields.inventory')
111
111
 
112
112
  %span.heading.heading--3.heading--no-margin.align-center
113
- = model.options.keys.to_sentence
113
+ = model.variant_details.keys.to_sentence
114
114
  %p.align-center= t('workarea.admin.fields.options')
115
115
 
116
116
  = link_to catalog_product_variants_path(model), class: 'card__button' do
@@ -63,11 +63,6 @@
63
63
  .property
64
64
  = text_field_tag 'new_details[]', nil, id: nil, class: 'text-box text-box--i18n', title: t('workarea.admin.catalog_variants.edit.options.new_attribute_value'), placeholder: t('workarea.admin.catalog_variants.edit.options.new_attribute_value_placeholder')
65
65
  %span.property__note= t('workarea.admin.catalog_variants.edit.options.new_attribute_value_note')
66
- %span.property__note
67
- = t('workarea.admin.catalog_variants.edit.options.new_attribute_value_csv')
68
- = link_to '#csv-help', data: { tooltip: '' } do
69
- = inline_svg('workarea/admin/icons/help.svg', class: 'svg-icon svg-icon--small svg-icon--blue', title: t('workarea.admin.catalog_variants.edit.options.learn_more'))
70
- = render 'workarea/admin/shared/csv_formatting_tooltip'
71
66
  %td.align-center -
72
67
 
73
68
  .workflow-bar
@@ -55,11 +55,6 @@
55
55
  .property
56
56
  = text_field_tag 'new_details[]', nil, id: nil, class: 'text-box text-box--i18n', title: t('workarea.admin.catalog_variants.new.options.new_attribute_value'), placeholder: t('workarea.admin.catalog_variants.new.options.new_attribute_value_placeholder')
57
57
  %span.property__note= t('workarea.admin.catalog_variants.new.options.new_attribute_value_note')
58
- %span.property__note
59
- = t('workarea.admin.catalog_variants.new.options.new_attribute_value_csv')
60
- = link_to '#csv-help', data: { tooltip: '' } do
61
- = inline_svg('workarea/admin/icons/help.svg', class: 'svg-icon svg-icon--small svg-icon--blue', title: t('workarea.admin.catalog_variants.new.options.learn_more'))
62
- = render 'workarea/admin/shared/csv_formatting_tooltip'
63
58
  %td.align-center -
64
59
 
65
60
  .workflow-bar
@@ -6,5 +6,5 @@
6
6
  #{local_time_ago(model.updated_at)}
7
7
  - else
8
8
  %span.summary__info-text-inactive= t('workarea.admin.navigation_menus.summary.inactive')
9
- %span.summary__info= t('workarea.admin.navigation_menus.summary.content_block', count: model.content.try(:blocks).size)
9
+ %span.summary__info= t('workarea.admin.navigation_menus.summary.content_block', count: model.content&.blocks&.size.to_i)
10
10
  %span.summary__type{ title: t('workarea.admin.navigation_menus.summary.type') }= t('workarea.admin.navigation_menus.summary.type')
@@ -5,6 +5,11 @@
5
5
  .view__heading
6
6
  = link_to "↑ #{t('workarea.admin.navigation_redirects.index.dashboard_link')}", settings_dashboards_path, class: 'view__dashboard-button'
7
7
  %h1= t('workarea.admin.navigation_redirects.index.title')
8
+ - unless navigation_redirects_enabled?
9
+ .grid.grid--center
10
+ .grid__cell.grid__cell--50
11
+ = render_message 'warning' do
12
+ = t('workarea.admin.navigation_redirects.index.disabled')
8
13
 
9
14
  .view__container
10
15
 
@@ -5,7 +5,7 @@
5
5
  %span.discount__node
6
6
  %span.property.property--inline
7
7
  = text_field_tag 'discount[amount]', @discount.amount, class: 'text-box text-box--small', title: 'Amount of Discount', placeholder: '10', required: true
8
- %span.discount__node off products
8
+ %span.discount__node off the item's unit price
9
9
 
10
10
  .discount__node-line
11
11
  %p.discount__node-group
@@ -1,4 +1,4 @@
1
- .toggle-button{ data: data }
1
+ .toggle-button{ data: data, class: disabled ? 'toggle-button--disabled' : nil }
2
2
  .toggle-button__switch
3
3
  = radio_button_tag input_name, true, condition, disabled: disabled, class: 'toggle-button__input toggle-button__input--positive', title: title_true, id: "#{dom_id}_true"
4
4
  = label_tag "#{dom_id}_false", label_true, class: 'toggle-button__label toggle-button__label--positive', id: "#{dom_id}_false_label"
@@ -67,6 +67,7 @@
67
67
  = link_to current_impersonation.email, user_path(current_impersonation)
68
68
  %br
69
69
  = form_tag impersonations_path, method: 'delete', data: { disable_delete_confirmation: '' } do
70
+ = hidden_field_tag :return_to, return_to
70
71
  = button_tag t('workarea.admin.toolbar.stop_impersonation'), class: 'text-button text-button--destroy'
71
72
 
72
73
  - if allow_pricing_override?
@@ -90,6 +90,18 @@
90
90
  = @user.insights.average_order_value_percentile.ordinalize
91
91
  = t('workarea.admin.users.insights.percentile')
92
92
 
93
+ .align-center
94
+ = link_to '#customer-insights-info', data: { tooltip: { side: 'bottom', interactive: true } } do
95
+ = t('workarea.admin.users.insights.customer_insights')
96
+ #customer-insights-info.tooltip-content.align-center
97
+ = t( |
98
+ 'workarea.admin.users.insights.customer_insights_info_html', |
99
+ best_customers_path: insights_report_path(type: Workarea::Insights::BestCustomers), |
100
+ customers_at_risk_path: insights_report_path(type: Workarea::Insights::CustomersAtRisk), |
101
+ repeat_purchase_rate_path: insights_report_path(type: Workarea::Insights::RepeatPurchaseRate), |
102
+ orders_path: orders_user_path(@user) |
103
+ ) |
104
+
93
105
  .section
94
106
  %h2.align-center= t('workarea.admin.users.insights.recently_viewed.title')
95
107
  .grid.grid--center
@@ -286,6 +286,7 @@ en:
286
286
  views: views
287
287
  edit:
288
288
  client_id_note: Identifies the category for product import
289
+ default_sort_note: 'Since this category has featured products, this sort controls the products listed after the selected featured products.'
289
290
  filters_note_html: 'Comma separated: just, like, this. If these fields are blank, the global values will be used from %{search_settings_link}.'
290
291
  page_title: Attributes for %{category}
291
292
  search_settings: search settings
@@ -485,7 +486,6 @@ en:
485
486
  new_attribute_name_note: 'Example: Material'
486
487
  new_attribute_name_placeholder: New Attribute Name
487
488
  new_attribute_value: New Attribute Value
488
- new_attribute_value_csv: 'Comma separated: just, like, this'
489
489
  new_attribute_value_note: 'Example: Cotton'
490
490
  new_attribute_value_placeholder: New Attribute Value
491
491
  remove: Remove
@@ -524,7 +524,6 @@ en:
524
524
  new_attribute_name_note: 'Example: Material'
525
525
  new_attribute_name_placeholder: New Attribute Name
526
526
  new_attribute_value: New Attribute Value
527
- new_attribute_value_csv: 'Comma separated: just, like, this'
528
527
  new_attribute_value_note: 'Example: Cotton'
529
528
  new_attribute_value_placeholder: New Attribute Value
530
529
  remove: Remove
@@ -2289,6 +2288,10 @@ en:
2289
2288
  destination_label: Redirect To
2290
2289
  destination_note: Can be any URL
2291
2290
  destination_placeholder: "/new/path.html"
2291
+ disabled: >
2292
+ This application is configured to consider requests to be local, so the Workarea exception handling isn't used.
2293
+ This is most likely because it's running the development environment, where you want exceptions to be seen in responses.
2294
+ These redirects won't work without this.
2292
2295
  from: From
2293
2296
  import: Import Redirects
2294
2297
  modified: Modified
@@ -3191,10 +3194,10 @@ en:
3191
3194
  description: Define what filters should be shown on search results and categories.
3192
3195
  title: Filters
3193
3196
  synonyms:
3194
- description: Define groups of search terms that should return the same result.
3197
+ description: Define groups of search terms that mean the same thing. Keep in mind this is not the same as "return the same results". For that task, use search customizations.
3195
3198
  phrase_example: united states,u s a,united states of america => usa
3196
3199
  phrase_example_description: 'You can create synonym functionality out of a phrase like so:'
3197
- simple_example: "tshirt, t-shirt, tee-shirt \nskirt, skort"
3200
+ simple_example: "denim, jeans, dungarees \nshirt, pullover, blouse"
3198
3201
  simple_example_description: 'Enter one synonym group per line, for example:'
3199
3202
  title: Synonyms
3200
3203
  title: Search Settings
@@ -3514,7 +3517,7 @@ en:
3514
3517
  changes_saved: Your changes have been saved
3515
3518
  saved: Your changes have been saved
3516
3519
  started: You are now browsing as %{email}
3517
- stopped: Impersonation for this user has been stopped.
3520
+ stopped: Impersonation has been stopped, you are now browsing as your account.
3518
3521
  created: This account has been created
3519
3522
  error: There was an error saving this account
3520
3523
  index:
@@ -3555,6 +3558,17 @@ en:
3555
3558
  aov: AOV
3556
3559
  insights_for_this_customer: Insights for this Customer
3557
3560
  percentile: percentile
3561
+ customer_insights: Wondering about how Workarea customer insights work?
3562
+ customer_insights_info_html: >
3563
+ <strong>How are customer metrics tracked?</strong>
3564
+ <p>Workarea's metrics engine saves reporting and insights data based on the customer's email address.
3565
+ This allows for the best tracking of customers for generating helpful insights like
3566
+ <a href="%{best_customers_path}">Best Customers</a>, <a href="%{customers_at_risk_path}">Customers at Risk</a>,
3567
+ and <a href="%{repeat_purchase_rate_path}">Repeat Purchase Rate</a> as accurately as possible across both
3568
+ guest and account checkouts.</p>
3569
+ <strong>Wondering why some numbers don't line up?</strong>
3570
+ <p>Because reporting is tracked by email address, changes in email address and/or having an account
3571
+ can cause mismatch between the <a href="%{orders_path}">Orders</a> card and these insights.</p>
3558
3572
  login:
3559
3573
  never: Never logged in
3560
3574
  time_ago: "%{period} ago"
@@ -70,9 +70,34 @@ module Workarea
70
70
  post admin.impersonations_path, params: { user_id: @user.id }
71
71
  delete admin.impersonations_path
72
72
 
73
- assert(response.redirect?)
74
73
  assert_equal(previous_user_id, response_cookies['user_id'])
75
74
  assert(session['admin_id'].blank?)
75
+
76
+ post admin.impersonations_path, params: { user_id: @user.id }
77
+ delete admin.impersonations_path
78
+
79
+ assert_equal(previous_user_id, response_cookies['user_id'])
80
+ assert(session['admin_id'].blank?)
81
+ end
82
+
83
+ def test_redirection_after_destroy
84
+ post admin.impersonations_path, params: { user_id: @user.id }
85
+ delete admin.impersonations_path
86
+ assert_redirected_to(admin.user_path(@user.id))
87
+
88
+ post admin.impersonations_path, params: { user_id: @user.id }
89
+ delete admin.impersonations_path(return_to: '/foo')
90
+ assert_redirected_to('/foo')
91
+
92
+ post admin.impersonations_path, params: { user_id: @user.id }
93
+ delete admin.impersonations_path(return_to: '/foo'),
94
+ headers: { 'HTTP_REFERER' => admin.catalog_products_path }
95
+ assert_redirected_to('/foo')
96
+
97
+ post admin.impersonations_path, params: { user_id: @user.id }
98
+ delete admin.impersonations_path,
99
+ headers: { 'HTTP_REFERER' => admin.catalog_products_url(host: 'foo.com') }
100
+ assert_redirected_to(admin.catalog_products_path)
76
101
  end
77
102
  end
78
103
  end
@@ -0,0 +1,10 @@
1
+ .new-navigation-link__section{ data: { new_navigation_taxon: 'bar' } }
2
+ %fieldset
3
+ %legend
4
+ %span.heading.heading--2 Existing
5
+ .property
6
+ = label_tag 'navigable_type', 'Type', class: 'property__name'
7
+ = select_tag 'navigable_type', options_for_select([['Foo', 'foo', { data: { new_navigation_taxon_endpoint: 'http://foo.com' } }], ['Bar', 'bar', { data: { new_navigation_taxon_endpoint: 'http://bar.com' } }]])
8
+ .property
9
+ = label_tag 'navigable_id', 'Name', class: 'property__name'
10
+ = select_tag 'navigable_id', options_for_select([['Bar', 'bar']], 'bar'), include_blank: true
@@ -6,7 +6,6 @@
6
6
  it('initializes select2 on navigable id select', function () {
7
7
  var markup = 'new_navigation_taxon.html',
8
8
  $fixture = $(fixture.load(markup, true)),
9
-
10
9
  $select = $('[name=navigable_id]', $fixture);
11
10
 
12
11
  expect($select.is('.select2-hidden-accessible')).to.not.be.ok;
@@ -14,6 +13,18 @@
14
13
  WORKAREA.newNavigationTaxons.init($fixture);
15
14
 
16
15
  expect($select.is('.select2-hidden-accessible')).to.be.ok;
16
+ expect($select.val()).to.equal('');
17
+ });
18
+
19
+ it('saves with the existing data', function () {
20
+ var markup = 'existing_navigation_taxon.html',
21
+ $fixture = $(fixture.load(markup, true)),
22
+ $select = $('[name=navigable_id]', $fixture);
23
+
24
+ WORKAREA.newNavigationTaxons.init($fixture);
25
+
26
+ expect($select.is('.select2-hidden-accessible')).to.be.ok;
27
+ expect($select.val()).to.equal('bar');
17
28
  });
18
29
  });
19
30
  });
@@ -34,12 +34,9 @@ module Workarea
34
34
  click_button 'Stop Impersonation'
35
35
  end
36
36
 
37
- assert_equal(admin.user_path(user), current_path)
37
+ assert_equal(storefront.root_path, current_path)
38
38
  assert(page.has_content?('Success'))
39
39
 
40
- find('.view').hover # Ensure tooltipster menu isn't open
41
- assert(page.has_content?('bcrouse@workarea.com'))
42
-
43
40
  visit storefront.users_account_path
44
41
  assert(page.has_no_content?('impersonated@workarea.com'))
45
42
 
@@ -52,7 +49,7 @@ module Workarea
52
49
  click_button 'Stop Impersonation'
53
50
  end
54
51
 
55
- assert_equal(admin.user_path(user), current_path)
52
+ assert_equal(admin.root_path, current_path)
56
53
  assert(page.has_content?('Success'))
57
54
  end
58
55
  end
@@ -23,7 +23,7 @@ module Workarea
23
23
  end
24
24
  end
25
25
 
26
- def test_options
26
+ def test_variant_details
27
27
  @view_model.variants.build(
28
28
  sku: 'SKU1',
29
29
  name: 'name',
@@ -42,7 +42,7 @@ module Workarea
42
42
 
43
43
  assert_equal(
44
44
  { 'Color' => ['Red', 'Black', 'White'], 'Size' => ['S', 'M', 'L'] },
45
- @view_model.options
45
+ @view_model.variant_details
46
46
  )
47
47
  end
48
48
 
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.4.39
4
+ version: 3.4.44
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Crouse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-01 00:00:00.000000000 Z
11
+ date: 2020-11-25 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.4.39
19
+ version: 3.4.44
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.4.39
26
+ version: 3.4.44
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.4.39
33
+ version: 3.4.44
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.4.39
40
+ version: 3.4.44
41
41
  description: Provides site administration functionality for the Workarea Commerce
42
42
  Platform.
43
43
  email:
@@ -1270,6 +1270,7 @@ files:
1270
1270
  - test/javascripts/fixtures/datepicker_fields.html.haml
1271
1271
  - test/javascripts/fixtures/datetimepicker_fields.html.haml
1272
1272
  - test/javascripts/fixtures/direct_upload.html.haml
1273
+ - test/javascripts/fixtures/existing_navigation_taxon.html.haml
1273
1274
  - test/javascripts/fixtures/help_lookup_button.haml
1274
1275
  - test/javascripts/fixtures/menu_editor_menu_list_sortable.html.haml
1275
1276
  - test/javascripts/fixtures/new_navigation_taxon.html.haml