forest_admin_datasource_toolkit 1.12.7 → 1.12.9
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a2869a4dfe7d8dae950e8e7ae8e15440c4341a6ca6e382b777f9cc86b04008d
|
|
4
|
+
data.tar.gz: 248cf3e4754f9786378222f15ba70c4f0bae9e59953da13fa417209153b17f82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f59037517ada1f3f767998191c294b480b64ec2593da1f858cce3803aeb8c99a356570f5a6a81a9c5c83a595cf0c02da75019c9158ec2cfe656ac1c57c6bfc70
|
|
7
|
+
data.tar.gz: 448a43b7d6ebf1ee922c8b203a90dcdcd4feeda5e1a7caf59ac855882eedcf4bb08d9fc623c41034501590da000d7431747ed0166ee8e8048a2b62e07e3295d5
|
|
@@ -15,6 +15,10 @@ module ForestAdminDatasourceToolkit
|
|
|
15
15
|
@child_datasource.collections.transform_values { |c| get_collection(c.name) }
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
+
def live_query_connections
|
|
19
|
+
@child_datasource.live_query_connections
|
|
20
|
+
end
|
|
21
|
+
|
|
18
22
|
def get_collection(name)
|
|
19
23
|
collection = @child_datasource.get_collection(name)
|
|
20
24
|
unless @decorators.key?(collection.name)
|
|
@@ -27,6 +31,10 @@ module ForestAdminDatasourceToolkit
|
|
|
27
31
|
def render_chart(caller, name)
|
|
28
32
|
@child_datasource.render_chart(caller, name)
|
|
29
33
|
end
|
|
34
|
+
|
|
35
|
+
def execute_native_query(connection_name, query, binds)
|
|
36
|
+
@child_datasource.execute_native_query(connection_name, query, binds)
|
|
37
|
+
end
|
|
30
38
|
end
|
|
31
39
|
end
|
|
32
40
|
end
|