motor-admin 0.4.20 → 0.4.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b796ea06cac239bc9bbdb96dc4c55360f0ea1f10ef231138b97f45a12922110
4
- data.tar.gz: 9178090c51a6b08d9a393e9c4b0f3c09733ac96ce9e9bce9c8fb07c1c0ed8c7c
3
+ metadata.gz: c865c0857941a1626234b641e4f20a4b961389f8f55639602b287ae7b68334b2
4
+ data.tar.gz: 20d007ae2ff17717db20197e8035502fe828940650d0c7c822084e3d51868bb4
5
5
  SHA512:
6
- metadata.gz: 545907a15250c164e46a1fdb9b9da76cfbaf181e1013521ebca2db73c38a63b4490e486929d064e7e5de4a05fa8ed4dfb3664bcd819cfd25af01adabc9b72045
7
- data.tar.gz: 139ac86931034ee3f93826bd869eb2bb3f4a00c52d3e017875ac8ee512dda47cd8a8c892d703668b205dcd9f730e650041f60cc820d95376ddce024aa0584786
6
+ metadata.gz: 8d84bf72ace1611c23690b5ab97b3ec5505039afa87f9b9ce64b464bea75268e55baa0db3d9cd2b7ef6b32ba5e5ffce59416e86674582724d0042104f5e7c79b
7
+ data.tar.gz: c3d4372c18e32f55050bfd9377e0e28704c4280188a480f3586383e879581c6b6c8596dc2db5ed30d7ae4e60000f9278119762f098691bba6f59634a1ff2774d
data/README.md CHANGED
@@ -39,6 +39,7 @@ $ rails motor:install && rake db:migrate
39
39
  * [Dashboards](#dashboards)
40
40
  * [Email alerts](#email-alerts)
41
41
  * [Authorization](#authorization)
42
+ * [Active Storage](#active-storage)
42
43
  * [Intelligence search](#intelligence-search)
43
44
  * [I18n](#i18n)
44
45
  * [Optimized for mobile](#optimized-for-mobile)
@@ -134,6 +135,16 @@ Intelligence search can be opened via the top right corner button or using <kbd>
134
135
 
135
136
  Motor Admin allows to set row-level and column-level permissions via [cancan](https://github.com/CanCanCommunity/cancancan) gem. Admin UI permissions should be defined in `app/models/motor/ability.rb` file in `Motor::Ability` class. See [Motor Admin guide](https://github.com/motor-admin/motor-admin-rails/blob/master/guides/defining_permissions.md) and [CanCan documentation](https://github.com/CanCanCommunity/cancancan/blob/develop/docs/Defining-Abilities.md) to learn how to define user permissions.
136
137
 
138
+ ### Active Storage
139
+
140
+ Motor Admin is configured by default to perform uploads to the provider you configured in your `storage.yml` file for Active Storage. If you are using large uploads within Motor Admin you will need to enable direct uploads by setting the following ENV variable.
141
+
142
+ ```sh
143
+ MOTOR_ACTIVE_STORAGE_DIRECT_UPLOADS_ENABLED=true
144
+ ```
145
+
146
+ _Note: At the moment, this will enable direct uploads globally_
147
+
137
148
  ### I18n
138
149
 
139
150
  Motor Admin can use Rails ActiveRecord i18n keys to render resource translations:
@@ -16,6 +16,7 @@ module Motor
16
16
 
17
17
  private
18
18
 
19
+ # rubocop:disable Metrics/AbcSize
19
20
  def respond_with_result
20
21
  response = Motor::ApiConfigs.run(find_or_initialize_api_config,
21
22
  method: request_params[:method],
@@ -23,10 +24,16 @@ module Motor
23
24
  body: request_params[:body],
24
25
  params: request_params[:params],
25
26
  headers: { 'Authorization' => "Bearer #{current_user_jwt}" })
27
+ response.to_hash.each do |key, (value)|
28
+ next if key.casecmp('transfer-encoding').zero?
29
+
30
+ headers[key] = value
31
+ end
26
32
 
27
33
  self.response_body = response.body
28
34
  self.status = response.code.to_i
29
35
  end
36
+ # rubocop:enable Metrics/AbcSize
30
37
 
31
38
  def find_or_initialize_api_config
32
39
  Motor::ApiConfig.find_by(name: request_params[:api_config_name]) ||
@@ -17,6 +17,11 @@ module Motor
17
17
  query: request_params[:query],
18
18
  variables: request_params[:variables],
19
19
  headers: { 'Authorization' => "Bearer #{current_user_jwt}" })
20
+ response.to_hash.each do |key, (value)|
21
+ next if key.casecmp('transfer-encoding').zero?
22
+
23
+ headers[key] = value
24
+ end
20
25
 
21
26
  self.response_body = response.body
22
27
  self.status = response.code.to_i
@@ -34,6 +34,7 @@ module Motor
34
34
  end
35
35
 
36
36
  # rubocop:disable Metrics/AbcSize
37
+ # rubocop:disable Metrics/MethodLength
37
38
  # @return [Hash]
38
39
  def build_data(cache_keys = {}, current_user = nil, current_ability = nil)
39
40
  configs_cache_key = cache_keys[:configs]
@@ -46,6 +47,7 @@ module Motor
46
47
  base_path: Motor::Admin.routes.url_helpers.motor_path,
47
48
  cable_path: Motor::Admin.routes.url_helpers.try(:motor_cable_path),
48
49
  admin_settings_path: Rails.application.routes.url_helpers.try(:admin_settings_general_path),
50
+ active_storage_direct_uploads_enabled: ENV['MOTOR_ACTIVE_STORAGE_DIRECT_UPLOADS_ENABLED'].present?,
49
51
  schema: Motor::BuildSchema.call(cache_keys, current_ability),
50
52
  header_links: header_links_data_hash(current_user, current_ability, configs_cache_key),
51
53
  homepage_layout: homepage_layout_data_hash(configs_cache_key),
@@ -59,6 +61,7 @@ module Motor
59
61
  forms: forms_data_hash(build_cache_key(cache_keys, :forms, current_user, current_ability), current_ability) }
60
62
  end
61
63
  # rubocop:enable Metrics/AbcSize
64
+ # rubocop:enable Metrics/MethodLength
62
65
 
63
66
  def i18n_data
64
67
  I18n.t('motor', default: I18n.t('motor', locale: :en))
data/lib/motor/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- VERSION = '0.4.20'
4
+ VERSION = '0.4.22'
5
5
  end
@@ -3964,9 +3964,9 @@
3964
3964
  "images/layers-2x.png": "images/layers-2x.png",
3965
3965
  "images/layers.png": "images/layers.png",
3966
3966
  "images/marker-icon.png": "images/marker-icon.png",
3967
- "main-7b8275fb2ab269bb5f11.css.gz": "main-7b8275fb2ab269bb5f11.css.gz",
3968
- "main-7b8275fb2ab269bb5f11.js.LICENSE.txt": "main-7b8275fb2ab269bb5f11.js.LICENSE.txt",
3969
- "main-7b8275fb2ab269bb5f11.js.gz": "main-7b8275fb2ab269bb5f11.js.gz",
3970
- "main.css": "main-7b8275fb2ab269bb5f11.css",
3971
- "main.js": "main-7b8275fb2ab269bb5f11.js"
3967
+ "main-13a7c05e5e481d3fe39b.css.gz": "main-13a7c05e5e481d3fe39b.css.gz",
3968
+ "main-13a7c05e5e481d3fe39b.js.LICENSE.txt": "main-13a7c05e5e481d3fe39b.js.LICENSE.txt",
3969
+ "main-13a7c05e5e481d3fe39b.js.gz": "main-13a7c05e5e481d3fe39b.js.gz",
3970
+ "main.css": "main-13a7c05e5e481d3fe39b.css",
3971
+ "main.js": "main-13a7c05e5e481d3fe39b.js"
3972
3972
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motor-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.20
4
+ version: 0.4.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Matsyburka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-02 00:00:00.000000000 Z
11
+ date: 2023-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ar_lazy_preload
@@ -2235,8 +2235,8 @@ files:
2235
2235
  - ui/dist/images/layers-2x.png
2236
2236
  - ui/dist/images/layers.png
2237
2237
  - ui/dist/images/marker-icon.png
2238
- - ui/dist/main-7b8275fb2ab269bb5f11.css.gz
2239
- - ui/dist/main-7b8275fb2ab269bb5f11.js.gz
2238
+ - ui/dist/main-13a7c05e5e481d3fe39b.css.gz
2239
+ - ui/dist/main-13a7c05e5e481d3fe39b.js.gz
2240
2240
  - ui/dist/manifest.json
2241
2241
  homepage:
2242
2242
  licenses: