thecore_ui_rails_admin 2.5.2 → 2.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d56abc0ad1a082f1c477523437ecb5590e7d6adc982705580671abe1844ff3ee
4
- data.tar.gz: cc97cf07a201e1bae3e6a13ed68f9d7b1d1b2293fd1002f129087e6e72dbc586
3
+ metadata.gz: 5dbbb4fc0003479cf43ec5f3744e176f8105193f45d232c9cde53e54fa4d3f85
4
+ data.tar.gz: 3c8f44879ee7f337f0db4695edbdce186ac63553156f0b813878af6ef27c5834
5
5
  SHA512:
6
- metadata.gz: 490070007ec09e792a512232755af25bbbc8353fb09ee8dd40b89b02dab0f590838062394ac9e17aa3d829e506133b9a1c5519b28b7189022d6fa6eedaa77f12
7
- data.tar.gz: 56ee296df7dc9dd50a532ccecc3903ea328f280a1f36adb395f46a7220a19c40c3d3dc8b4b6e2f2333a3a35611062718a3fed2a3851e770c46d5fa72734b9859
6
+ metadata.gz: 448cef53ac6f81b5671a948f5c5a6c9bd89365067708e1501b489100f380a986e7c2a2d28ab409a04b6d81747fe4cbeae01b529f4229e3a22d8902b41e5047fb
7
+ data.tar.gz: bec954a41ad1dd8dfbf570a0c8de939e30ad0c0b590fc714582026ee1ccfb309cb489f6874a7e8ea620516c7c71d8be475f45211a848d977a65ad82c5569a6af
@@ -4,7 +4,7 @@ require 'nested_form/builder_mixin'
4
4
  RailsAdmin.config do |config|
5
5
  config.main_app_name = Proc.new { |controller| [ ((ENV["APP_NAME"].presence || Settings.app_name.presence) rescue "Thecore"), "" ] }
6
6
  # Link for background Job
7
- (config.navigation_static_links ||= {}).merge! "Background Monitor" => "#{ENV['RAILS_RELATIVE_URL_ROOT']}/app/sidekiq"
7
+ (config.navigation_static_links ||= {}).merge! "Background Monitor" => "#{ENV["BACKEND_URL"].presence || "http://localhost:3000"}/sidekiq"
8
8
 
9
9
  ### Popular gems integration
10
10
  config.model "RoleUser" do
@@ -11,7 +11,7 @@ Rails.application.configure do
11
11
  RailsAdmin::Config::Actions::BulkDelete.send(:include, BulkDeleteConcern)
12
12
  ThecoreSettings::Setting.send(:include, ThecoreSettings::RailsAdminExtensionConfig)
13
13
  User.send(:include, ThecoreUiRailsAdminUser)
14
- UsedToken.send(:include, ThecoreUiRailsAdminUsedToken)
14
+ UsedToken.send(:include, ThecoreUiRailsAdminUsedToken) rescue puts "No UsedToken Model it could be normal: maybe model_driven_api is not installed"
15
15
  Role.send(:include, ThecoreUiRailsAdminRole)
16
16
  Permission.send(:include, ThecoreUiRailsAdminPermission)
17
17
  end
@@ -24,6 +24,8 @@ it:
24
24
  label: "Impostazioni"
25
25
  advanced:
26
26
  label: Avanzate
27
+ logging:
28
+ label: Logging
27
29
  registries:
28
30
  label: Anagrafiche
29
31
  operations:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_ui_rails_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.2
4
+ version: 2.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-08 00:00:00.000000000 Z
11
+ date: 2021-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thecore_ui_commons