thecore_ui_rails_admin 3.2.16 → 3.2.18
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 +4 -4
- data/config/initializers/concern_action.rb +2 -2
- data/config/initializers/concern_permission.rb +2 -2
- data/config/initializers/concern_permission_role.rb +2 -2
- data/config/initializers/concern_predicate.rb +2 -2
- data/config/initializers/concern_role.rb +2 -2
- data/config/initializers/concern_role_user.rb +2 -2
- data/config/initializers/concern_target.rb +2 -2
- data/config/initializers/concern_user.rb +2 -2
- data/lib/thecore_ui_rails_admin/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9928636c9e4f038af0a941c304b92a62d2d0b2bed75047a15fdbc28c254bb422
|
4
|
+
data.tar.gz: 2fed417b5d4424269a64843185edb1b6fb4584b0e14455baa5b40bbabada83b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0bbcb7414353a34fa7aefc67a94a11468c375e5fbcc38b5276a3a4a1703745eb3ca1a772849451d59d5e8124dd214923163a2b45535473588a7de06749bbc65
|
7
|
+
data.tar.gz: 849df5f251e1aaf70e1667429e1e98524346229d216161e25b323a90dafc9c2a35a88ca0a697c492cf28c922d7a6f774d9561eadced27b309cea345d1523d691
|
@@ -7,9 +7,9 @@ module ThecoreUiRailsAdminActionConcern
|
|
7
7
|
included do
|
8
8
|
|
9
9
|
rails_admin do
|
10
|
-
navigation_label I18n.t("admin.settings.label")
|
10
|
+
navigation_label Proc.new {I18n.t("admin.settings.label")}
|
11
11
|
navigation_icon 'fas fa-users'
|
12
|
-
desc I18n.t("activerecord.descriptions.role")
|
12
|
+
desc Proc.new {I18n.t("activerecord.descriptions.role")}
|
13
13
|
|
14
14
|
visible false
|
15
15
|
|
@@ -7,9 +7,9 @@ module ThecoreUiRailsAdminPermissionConcern
|
|
7
7
|
included do
|
8
8
|
|
9
9
|
rails_admin do
|
10
|
-
navigation_label I18n.t("admin.settings.label")
|
10
|
+
navigation_label Proc.new {I18n.t("admin.settings.label")}
|
11
11
|
navigation_icon 'fas fa-users'
|
12
|
-
desc I18n.t("activerecord.descriptions.role")
|
12
|
+
desc Proc.new {I18n.t("activerecord.descriptions.role")}
|
13
13
|
|
14
14
|
visible false
|
15
15
|
|
@@ -7,9 +7,9 @@ module ThecoreUiRailsAdminPermissionRoleConcern
|
|
7
7
|
included do
|
8
8
|
|
9
9
|
rails_admin do
|
10
|
-
navigation_label I18n.t("admin.settings.label")
|
10
|
+
navigation_label Proc.new {I18n.t("admin.settings.label")}
|
11
11
|
navigation_icon 'fas fa-users'
|
12
|
-
desc I18n.t("activerecord.descriptions.role")
|
12
|
+
desc Proc.new {I18n.t("activerecord.descriptions.role")}
|
13
13
|
|
14
14
|
visible false
|
15
15
|
end
|
@@ -7,9 +7,9 @@ module ThecoreUiRailsAdminPredicateConcern
|
|
7
7
|
included do
|
8
8
|
|
9
9
|
rails_admin do
|
10
|
-
navigation_label I18n.t("admin.settings.label")
|
10
|
+
navigation_label Proc.new {I18n.t("admin.settings.label")}
|
11
11
|
navigation_icon 'fas fa-users'
|
12
|
-
desc I18n.t("activerecord.descriptions.role")
|
12
|
+
desc Proc.new {I18n.t("activerecord.descriptions.role")}
|
13
13
|
|
14
14
|
visible false
|
15
15
|
|
@@ -7,9 +7,9 @@ module ThecoreUiRailsAdminRoleConcern
|
|
7
7
|
included do
|
8
8
|
|
9
9
|
rails_admin do
|
10
|
-
navigation_label I18n.t("admin.settings.label")
|
10
|
+
navigation_label Proc.new {I18n.t("admin.settings.label")}
|
11
11
|
navigation_icon 'fas fa-users'
|
12
|
-
desc I18n.t("activerecord.descriptions.role")
|
12
|
+
desc Proc.new {I18n.t("activerecord.descriptions.role")}
|
13
13
|
|
14
14
|
field :name
|
15
15
|
field :permissions
|
@@ -7,9 +7,9 @@ module ThecoreUiRailsAdminRoleUserConcern
|
|
7
7
|
included do
|
8
8
|
|
9
9
|
rails_admin do
|
10
|
-
navigation_label I18n.t("admin.settings.label")
|
10
|
+
navigation_label Proc.new {I18n.t("admin.settings.label")}
|
11
11
|
navigation_icon 'fas fa-users'
|
12
|
-
desc I18n.t("activerecord.descriptions.role")
|
12
|
+
desc Proc.new {I18n.t("activerecord.descriptions.role")}
|
13
13
|
|
14
14
|
visible false
|
15
15
|
end
|
@@ -7,9 +7,9 @@ module ThecoreUiRailsAdminTargetConcern
|
|
7
7
|
included do
|
8
8
|
|
9
9
|
rails_admin do
|
10
|
-
navigation_label I18n.t("admin.settings.label")
|
10
|
+
navigation_label Proc.new {I18n.t("admin.settings.label")}
|
11
11
|
navigation_icon 'fas fa-users'
|
12
|
-
desc I18n.t("activerecord.descriptions.role")
|
12
|
+
desc Proc.new {I18n.t("activerecord.descriptions.role")}
|
13
13
|
|
14
14
|
visible false
|
15
15
|
|
@@ -23,10 +23,10 @@ module ThecoreUiRailsAdminUserConcern
|
|
23
23
|
end
|
24
24
|
|
25
25
|
rails_admin do
|
26
|
-
navigation_label I18n.t("admin.settings.label")
|
26
|
+
navigation_label Proc.new { I18n.t("admin.settings.label") }
|
27
27
|
navigation_icon 'fa fa-user-circle'
|
28
28
|
parent Role
|
29
|
-
desc I18n.t("activerecord.descriptions.user")
|
29
|
+
desc Proc.new { I18n.t("activerecord.descriptions.user") }
|
30
30
|
|
31
31
|
exclude_fields :id, :remember_created_at, :sign_in_count, :current_sign_in_at, :last_sign_in_at, :current_sign_in_ip, :last_sign_in_ip, :lock_version, :role_users
|
32
32
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thecore_ui_rails_admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-02-
|
10
|
+
date: 2025-02-14 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: thecore_ui_commons
|