rails_admin_nested_list 0.0.2 → 0.0.3
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/README.md +16 -0
- data/lib/rails_admin_nested_list/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12ad3cd809f3b6e864dcb2a542d0af413866aec1487f66f8f17d8477ecfb5a62
|
4
|
+
data.tar.gz: 6d180eda9d77fe01cdfecd60653b4cd3f3351c3d8eeb460715098f67a3953cb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04544f4d41c97d1b8c412af3c0fd89774cbc06d053c2917955e65666fa0a9033a769321429ab67a6ddbcf28455610eb23c674b0e2078ed3272d1a3a394f47bdf
|
7
|
+
data.tar.gz: 81314ca5d62caea0a7a24153887de400e24fc5e4a69453f3202adda9107c2c205d3940ebb49c56efc435359625510479c62262ac3fca19e4ee82af31d88dd36e
|
data/README.md
CHANGED
@@ -24,3 +24,19 @@ RailsAdmin.config do |config|
|
|
24
24
|
end
|
25
25
|
end
|
26
26
|
```
|
27
|
+
## Config
|
28
|
+
|
29
|
+
- `active` - Open association field (default: false)
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
RailsAdmin.config do |config|
|
33
|
+
config.model MyAwesomeModel do
|
34
|
+
edit do
|
35
|
+
field :associations, :nested_list do
|
36
|
+
active true
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
```
|
42
|
+
active true
|