dscf-banking 0.2.0 → 0.2.1
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/app/controllers/dscf/banking/accounts_controller.rb +13 -2
- data/lib/dscf/banking/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: eedd9dcd4195d04eab117fdd48ada017e648a3c6ef79d94e634d29e0494c4e98
|
4
|
+
data.tar.gz: 044fdc35040403f853e0d110118c024928a4c8b736a4c159dd7be820ef9268fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 597e8e1187c4f547600aac35269d32d0446d01e99acc52546ddf975defea380b367b27d91d018b33942ea7b581f223f1f6992d72c133f900c18e500b3cc4a8cb
|
7
|
+
data.tar.gz: a0f408ddc7caf76d005c6767406586a9e98f5bf79c2009afcd13115c67f42706d95e6db386fb6899b36e7ae1b9c3ab6a2bd578c7bd298360d2ff65cc9615d301
|
@@ -245,8 +245,19 @@ module Dscf::Banking
|
|
245
245
|
|
246
246
|
def default_serializer_includes
|
247
247
|
{
|
248
|
-
|
249
|
-
|
248
|
+
index: [
|
249
|
+
:virtual_account_product,
|
250
|
+
:application
|
251
|
+
],
|
252
|
+
show: [
|
253
|
+
:virtual_account_product,
|
254
|
+
:application,
|
255
|
+
{
|
256
|
+
application: [ :user ]
|
257
|
+
}
|
258
|
+
],
|
259
|
+
create: [ :virtual_account_product, :application ],
|
260
|
+
update: [ :virtual_account_product, :application ]
|
250
261
|
}
|
251
262
|
end
|
252
263
|
end
|
data/lib/dscf/banking/version.rb
CHANGED