forest_liana 7.6.1 → 7.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/forest_liana/bootstrapper.rb +2 -2
- data/lib/forest_liana/version.rb +1 -1
- data/spec/lib/forest_liana/bootstrapper_spec.rb +104 -0
- metadata +137 -137
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf5ae1ded0eccb39f9cd865766053b17ba0887f53109d15d1424b5eb0106fe79
|
4
|
+
data.tar.gz: af2489f53d749ec12c3c8daeecbca39fd351d71894cd2fafe9dba31b44fcedbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fadc88d411dbf662bf99d836a3790d6ff0d17a5db44fd2ba9153632b1e553202693076609bf0355aba7c9859f27ec82c97e4b6364272a92e17d881c1e7b9ad1
|
7
|
+
data.tar.gz: 6b202989c5fbb4481c4b86e0911969703a2bbe8f7b4ab1a01874e14b4cb9bb0c33a313eaaeaf0d49958540325ac4f5e031fa7d8e5d0ca8ba6f3acbf7668eefef
|
@@ -59,8 +59,8 @@ module ForestLiana
|
|
59
59
|
c = get_collection(collection['name'])
|
60
60
|
unless c.nil?
|
61
61
|
a = get_action(c, action['name'])
|
62
|
-
load = !a.hooks.nil? && a.hooks.key?(:load) && a.hooks[:load].is_a?(Proc)
|
63
|
-
change = !a.hooks.nil? && a.hooks.key?(:change) && a.hooks[:change].is_a?(Hash) ? a.hooks[:change].keys : []
|
62
|
+
load = !a.nil? && !a.hooks.nil? && a.hooks.key?(:load) && a.hooks[:load].is_a?(Proc)
|
63
|
+
change = !a.nil? && !a.hooks.nil? && a.hooks.key?(:change) && a.hooks[:change].is_a?(Hash) ? a.hooks[:change].keys : []
|
64
64
|
action['hooks'] = {'load' => load, 'change' => change}
|
65
65
|
end
|
66
66
|
end
|
data/lib/forest_liana/version.rb
CHANGED
@@ -8,5 +8,109 @@ module ForestLiana
|
|
8
8
|
.to include(:database_type)
|
9
9
|
end
|
10
10
|
end
|
11
|
+
|
12
|
+
describe 'generate_action_hooks' do
|
13
|
+
schema = '{
|
14
|
+
"collections": [
|
15
|
+
{
|
16
|
+
"name": "Island",
|
17
|
+
"name_old": "Island",
|
18
|
+
"icon": null,
|
19
|
+
"is_read_only": false,
|
20
|
+
"is_searchable": true,
|
21
|
+
"is_virtual": false,
|
22
|
+
"only_for_relationships": false,
|
23
|
+
"pagination_type": "page",
|
24
|
+
"fields": [
|
25
|
+
{
|
26
|
+
"field": "id",
|
27
|
+
"type": "Number",
|
28
|
+
"default_value": null,
|
29
|
+
"enums": null,
|
30
|
+
"integration": null,
|
31
|
+
"is_filterable": true,
|
32
|
+
"is_read_only": false,
|
33
|
+
"is_required": false,
|
34
|
+
"is_sortable": true,
|
35
|
+
"is_virtual": false,
|
36
|
+
"reference": null,
|
37
|
+
"inverse_of": null,
|
38
|
+
"widget": null,
|
39
|
+
"validations": []
|
40
|
+
},
|
41
|
+
{
|
42
|
+
"field": "first_name",
|
43
|
+
"type": "String",
|
44
|
+
"default_value": null,
|
45
|
+
"enums": null,
|
46
|
+
"integration": null,
|
47
|
+
"is_filterable": true,
|
48
|
+
"is_read_only": false,
|
49
|
+
"is_required": false,
|
50
|
+
"is_sortable": true,
|
51
|
+
"is_virtual": false,
|
52
|
+
"reference": null,
|
53
|
+
"inverse_of": null,
|
54
|
+
"widget": null,
|
55
|
+
"validations": []
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"field": "last_name",
|
59
|
+
"type": "String",
|
60
|
+
"default_value": null,
|
61
|
+
"enums": null,
|
62
|
+
"integration": null,
|
63
|
+
"is_filterable": true,
|
64
|
+
"is_read_only": false,
|
65
|
+
"is_required": false,
|
66
|
+
"is_sortable": true,
|
67
|
+
"is_virtual": false,
|
68
|
+
"reference": null,
|
69
|
+
"inverse_of": null,
|
70
|
+
"widget": null,
|
71
|
+
"validations": []
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"segments": [],
|
75
|
+
"actions": [
|
76
|
+
{
|
77
|
+
"name": "foo",
|
78
|
+
"type": "bulk",
|
79
|
+
"base_url": null,
|
80
|
+
"endpoint": "forest/actions/mark-as-live",
|
81
|
+
"http_method": "POST",
|
82
|
+
"redirect": null,
|
83
|
+
"download": false,
|
84
|
+
"fields": [],
|
85
|
+
"hooks": {
|
86
|
+
"load": false,
|
87
|
+
"change": []
|
88
|
+
}
|
89
|
+
}
|
90
|
+
]
|
91
|
+
}
|
92
|
+
],
|
93
|
+
"meta": {
|
94
|
+
"liana": "forest-rails",
|
95
|
+
"liana_version": "7.6.0",
|
96
|
+
"stack": {
|
97
|
+
"database_type": "postgresql",
|
98
|
+
"orm_version": "7.0.2.4"
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}'
|
102
|
+
|
103
|
+
|
104
|
+
it "Should return actions hooks empty for the island collection" do
|
105
|
+
allow(ForestLiana).to receive(:env_secret).and_return(nil)
|
106
|
+
bootstrapper = Bootstrapper.new
|
107
|
+
content = JSON.parse(schema)
|
108
|
+
bootstrapper.instance_variable_set(:@collections_sent, content['collections'])
|
109
|
+
bootstrapper.instance_variable_set(:@meta_sent, content['meta'])
|
110
|
+
bootstrapper.send(:generate_action_hooks)
|
111
|
+
|
112
|
+
expect(bootstrapper.instance_variable_get("@collections_sent").first['actions'].first['hooks']).to eq({"load"=>false, "change"=>[]})
|
113
|
+
end
|
114
|
+
end
|
11
115
|
end
|
12
116
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forest_liana
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.6.
|
4
|
+
version: 7.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sandro Munda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -515,176 +515,176 @@ signing_key:
|
|
515
515
|
specification_version: 4
|
516
516
|
summary: Official Rails Liana for Forest
|
517
517
|
test_files:
|
518
|
-
- test/
|
519
|
-
- test/fixtures/
|
520
|
-
- test/fixtures/
|
518
|
+
- test/test_helper.rb
|
519
|
+
- test/fixtures/reference.yml
|
520
|
+
- test/fixtures/owner.yml
|
521
521
|
- test/fixtures/tree.yml
|
522
522
|
- test/fixtures/string_field.yml
|
523
|
+
- test/fixtures/belongs_to_field.yml
|
523
524
|
- test/fixtures/has_many_through_field.yml
|
525
|
+
- test/fixtures/has_many_field.yml
|
526
|
+
- test/fixtures/serialize_field.yml
|
524
527
|
- test/fixtures/has_one_field.yml
|
525
|
-
- test/
|
526
|
-
- test/
|
527
|
-
- test/
|
528
|
-
- test/
|
529
|
-
- test/
|
530
|
-
- test/
|
531
|
-
- test/
|
532
|
-
- test/dummy/public/favicon.ico
|
533
|
-
- test/dummy/public/404.html
|
534
|
-
- test/dummy/public/500.html
|
535
|
-
- test/dummy/public/422.html
|
536
|
-
- test/dummy/db/migrate/20150608132621_create_string_field.rb
|
537
|
-
- test/dummy/db/migrate/20160628173505_add_timestamps.rb
|
538
|
-
- test/dummy/db/migrate/20160627172951_create_tree.rb
|
539
|
-
- test/dummy/db/migrate/20150608130516_create_date_field.rb
|
540
|
-
- test/dummy/db/migrate/20150609114636_create_belongs_to_class_name_field.rb
|
541
|
-
- test/dummy/db/migrate/20150814081918_create_has_many_through_field.rb
|
542
|
-
- test/dummy/db/migrate/20160627172810_create_owner.rb
|
543
|
-
- test/dummy/db/migrate/20150623115554_create_has_many_class_name_field.rb
|
544
|
-
- test/dummy/db/migrate/20150608132159_create_boolean_field.rb
|
545
|
-
- test/dummy/db/migrate/20150608131430_create_integer_field.rb
|
546
|
-
- test/dummy/db/migrate/20150612112520_create_has_and_belongs_to_many_field.rb
|
547
|
-
- test/dummy/db/migrate/20150608133038_create_belongs_to_field.rb
|
548
|
-
- test/dummy/db/migrate/20170614141921_create_serialize_field.rb
|
549
|
-
- test/dummy/db/migrate/20150608131610_create_float_field.rb
|
550
|
-
- test/dummy/db/migrate/20150608131603_create_decimal_field.rb
|
551
|
-
- test/dummy/db/migrate/20150608150016_create_has_many_field.rb
|
552
|
-
- test/dummy/db/migrate/20150608133044_create_has_one_field.rb
|
553
|
-
- test/dummy/db/migrate/20181111162121_create_references_table.rb
|
554
|
-
- test/dummy/db/migrate/20150616150629_create_polymorphic_field.rb
|
555
|
-
- test/dummy/db/schema.rb
|
556
|
-
- test/dummy/config.ru
|
528
|
+
- test/dummy/bin/rake
|
529
|
+
- test/dummy/bin/bundle
|
530
|
+
- test/dummy/bin/rails
|
531
|
+
- test/dummy/bin/setup
|
532
|
+
- test/dummy/Rakefile
|
533
|
+
- test/dummy/config/boot.rb
|
534
|
+
- test/dummy/config/secrets.yml
|
557
535
|
- test/dummy/config/application.rb
|
536
|
+
- test/dummy/config/routes.rb
|
558
537
|
- test/dummy/config/environments/development.rb
|
559
|
-
- test/dummy/config/environments/production.rb
|
560
538
|
- test/dummy/config/environments/test.rb
|
561
|
-
- test/dummy/config/
|
562
|
-
- test/dummy/config/routes.rb
|
563
|
-
- test/dummy/config/secrets.yml
|
539
|
+
- test/dummy/config/environments/production.rb
|
564
540
|
- test/dummy/config/database.yml
|
565
|
-
- test/dummy/config/
|
566
|
-
- test/dummy/config/
|
567
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
568
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
569
|
-
- test/dummy/config/initializers/session_store.rb
|
541
|
+
- test/dummy/config/environment.rb
|
542
|
+
- test/dummy/config/locales/en.yml
|
570
543
|
- test/dummy/config/initializers/assets.rb
|
544
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
545
|
+
- test/dummy/config/initializers/mime_types.rb
|
571
546
|
- test/dummy/config/initializers/inflections.rb
|
547
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
572
548
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
573
|
-
- test/dummy/config/
|
574
|
-
- test/dummy/config/
|
549
|
+
- test/dummy/config/initializers/session_store.rb
|
550
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
575
551
|
- test/dummy/README.rdoc
|
552
|
+
- test/dummy/app/views/layouts/application.html.erb
|
576
553
|
- test/dummy/app/controllers/application_controller.rb
|
554
|
+
- test/dummy/app/assets/stylesheets/application.css
|
555
|
+
- test/dummy/app/assets/config/manifest.js
|
556
|
+
- test/dummy/app/assets/javascripts/application.js
|
557
|
+
- test/dummy/app/helpers/application_helper.rb
|
577
558
|
- test/dummy/app/models/has_many_through_field.rb
|
578
|
-
- test/dummy/app/models/
|
559
|
+
- test/dummy/app/models/boolean_field.rb
|
560
|
+
- test/dummy/app/models/float_field.rb
|
561
|
+
- test/dummy/app/models/belongs_to_class_name_field.rb
|
562
|
+
- test/dummy/app/models/has_and_belongs_to_many_field.rb
|
579
563
|
- test/dummy/app/models/string_field.rb
|
580
564
|
- test/dummy/app/models/date_field.rb
|
581
|
-
- test/dummy/app/models/belongs_to_class_name_field.rb
|
582
|
-
- test/dummy/app/models/owner.rb
|
583
565
|
- test/dummy/app/models/decimal_field.rb
|
584
566
|
- test/dummy/app/models/tree.rb
|
585
|
-
- test/dummy/app/models/
|
567
|
+
- test/dummy/app/models/reference.rb
|
586
568
|
- test/dummy/app/models/has_many_class_name_field.rb
|
587
|
-
- test/dummy/app/models/
|
569
|
+
- test/dummy/app/models/serialize_field.rb
|
570
|
+
- test/dummy/app/models/owner.rb
|
571
|
+
- test/dummy/app/models/polymorphic_field.rb
|
588
572
|
- test/dummy/app/models/integer_field.rb
|
589
573
|
- test/dummy/app/models/belongs_to_field.rb
|
590
|
-
- test/dummy/app/models/serialize_field.rb
|
591
|
-
- test/dummy/app/models/has_and_belongs_to_many_field.rb
|
592
|
-
- test/dummy/app/models/float_field.rb
|
593
574
|
- test/dummy/app/models/has_one_field.rb
|
594
|
-
- test/dummy/app/models/
|
595
|
-
- test/dummy/
|
596
|
-
- test/dummy/
|
597
|
-
- test/dummy/
|
598
|
-
- test/dummy/
|
599
|
-
- test/dummy/
|
600
|
-
- test/dummy/
|
601
|
-
- test/dummy/
|
602
|
-
- test/dummy/
|
603
|
-
- test/dummy/
|
604
|
-
- test/dummy/
|
605
|
-
-
|
606
|
-
-
|
607
|
-
-
|
608
|
-
-
|
609
|
-
-
|
610
|
-
-
|
611
|
-
-
|
612
|
-
-
|
613
|
-
-
|
614
|
-
-
|
615
|
-
-
|
616
|
-
-
|
617
|
-
-
|
618
|
-
-
|
619
|
-
-
|
620
|
-
-
|
621
|
-
-
|
622
|
-
-
|
623
|
-
-
|
624
|
-
- spec/
|
625
|
-
- spec/
|
626
|
-
- spec/dummy/
|
627
|
-
- spec/dummy/
|
628
|
-
- spec/dummy/
|
629
|
-
- spec/dummy/
|
630
|
-
- spec/dummy/
|
631
|
-
- spec/dummy/
|
632
|
-
- spec/dummy/db/migrate/20190226173051_create_isle.rb
|
633
|
-
- spec/dummy/db/migrate/20190226172951_create_user.rb
|
634
|
-
- spec/dummy/db/migrate/20210526084712_create_products.rb
|
635
|
-
- spec/dummy/db/migrate/20210326140855_create_locations.rb
|
636
|
-
- spec/dummy/db/migrate/20190716130830_add_age_to_tree.rb
|
637
|
-
- spec/dummy/db/migrate/20190226174951_create_tree.rb
|
638
|
-
- spec/dummy/db/migrate/20190716135241_add_type_to_user.rb
|
639
|
-
- spec/dummy/db/migrate/20210326110524_create_references.rb
|
640
|
-
- spec/dummy/db/schema.rb
|
641
|
-
- spec/dummy/config.ru
|
575
|
+
- test/dummy/app/models/has_many_field.rb
|
576
|
+
- test/dummy/db/migrate/20150609114636_create_belongs_to_class_name_field.rb
|
577
|
+
- test/dummy/db/migrate/20150608133038_create_belongs_to_field.rb
|
578
|
+
- test/dummy/db/migrate/20160628173505_add_timestamps.rb
|
579
|
+
- test/dummy/db/migrate/20150608131603_create_decimal_field.rb
|
580
|
+
- test/dummy/db/migrate/20181111162121_create_references_table.rb
|
581
|
+
- test/dummy/db/migrate/20150814081918_create_has_many_through_field.rb
|
582
|
+
- test/dummy/db/migrate/20150623115554_create_has_many_class_name_field.rb
|
583
|
+
- test/dummy/db/migrate/20150608150016_create_has_many_field.rb
|
584
|
+
- test/dummy/db/migrate/20150608131430_create_integer_field.rb
|
585
|
+
- test/dummy/db/migrate/20160627172810_create_owner.rb
|
586
|
+
- test/dummy/db/migrate/20150608133044_create_has_one_field.rb
|
587
|
+
- test/dummy/db/migrate/20150616150629_create_polymorphic_field.rb
|
588
|
+
- test/dummy/db/migrate/20150608132621_create_string_field.rb
|
589
|
+
- test/dummy/db/migrate/20150608130516_create_date_field.rb
|
590
|
+
- test/dummy/db/migrate/20160627172951_create_tree.rb
|
591
|
+
- test/dummy/db/migrate/20170614141921_create_serialize_field.rb
|
592
|
+
- test/dummy/db/migrate/20150612112520_create_has_and_belongs_to_many_field.rb
|
593
|
+
- test/dummy/db/migrate/20150608131610_create_float_field.rb
|
594
|
+
- test/dummy/db/migrate/20150608132159_create_boolean_field.rb
|
595
|
+
- test/dummy/db/schema.rb
|
596
|
+
- test/dummy/public/422.html
|
597
|
+
- test/dummy/public/500.html
|
598
|
+
- test/dummy/public/favicon.ico
|
599
|
+
- test/dummy/public/404.html
|
600
|
+
- test/dummy/config.ru
|
601
|
+
- test/services/forest_liana/operator_date_interval_parser_test.rb
|
602
|
+
- test/services/forest_liana/schema_adapter_test.rb
|
603
|
+
- test/routing/route_test.rb
|
604
|
+
- test/forest_liana_test.rb
|
605
|
+
- spec/spec_helper.rb
|
606
|
+
- spec/dummy/bin/rake
|
607
|
+
- spec/dummy/bin/bundle
|
608
|
+
- spec/dummy/bin/rails
|
609
|
+
- spec/dummy/bin/setup
|
610
|
+
- spec/dummy/Rakefile
|
611
|
+
- spec/dummy/config/boot.rb
|
612
|
+
- spec/dummy/config/secrets.yml
|
642
613
|
- spec/dummy/config/application.rb
|
614
|
+
- spec/dummy/config/routes.rb
|
643
615
|
- spec/dummy/config/environments/development.rb
|
644
|
-
- spec/dummy/config/environments/production.rb
|
645
616
|
- spec/dummy/config/environments/test.rb
|
646
|
-
- spec/dummy/config/
|
647
|
-
- spec/dummy/config/routes.rb
|
648
|
-
- spec/dummy/config/secrets.yml
|
617
|
+
- spec/dummy/config/environments/production.rb
|
649
618
|
- spec/dummy/config/database.yml
|
650
|
-
- spec/dummy/config/
|
651
|
-
- spec/dummy/config/initializers/mime_types.rb
|
652
|
-
- spec/dummy/config/initializers/cookies_serializer.rb
|
653
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
654
|
-
- spec/dummy/config/initializers/forest_liana.rb
|
655
|
-
- spec/dummy/config/initializers/session_store.rb
|
619
|
+
- spec/dummy/config/environment.rb
|
656
620
|
- spec/dummy/config/initializers/assets.rb
|
621
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
622
|
+
- spec/dummy/config/initializers/mime_types.rb
|
657
623
|
- spec/dummy/config/initializers/inflections.rb
|
624
|
+
- spec/dummy/config/initializers/forest_liana.rb
|
625
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
658
626
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
659
|
-
- spec/dummy/config/
|
627
|
+
- spec/dummy/config/initializers/session_store.rb
|
628
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
660
629
|
- spec/dummy/README.rdoc
|
661
|
-
- spec/dummy/app/
|
662
|
-
- spec/dummy/app/controllers/forest/islands_controller.rb
|
630
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
663
631
|
- spec/dummy/app/config/routes.rb
|
664
|
-
- spec/dummy/app/
|
632
|
+
- spec/dummy/app/controllers/forest/islands_controller.rb
|
633
|
+
- spec/dummy/app/controllers/application_controller.rb
|
634
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
635
|
+
- spec/dummy/app/assets/config/manifest.js
|
636
|
+
- spec/dummy/app/assets/javascripts/application.js
|
637
|
+
- spec/dummy/app/helpers/application_helper.rb
|
665
638
|
- spec/dummy/app/models/product.rb
|
666
|
-
- spec/dummy/app/models/owner.rb
|
667
|
-
- spec/dummy/app/models/tree.rb
|
668
639
|
- spec/dummy/app/models/island.rb
|
640
|
+
- spec/dummy/app/models/tree.rb
|
669
641
|
- spec/dummy/app/models/reference.rb
|
642
|
+
- spec/dummy/app/models/owner.rb
|
643
|
+
- spec/dummy/app/models/user.rb
|
670
644
|
- spec/dummy/app/models/location.rb
|
671
|
-
- spec/dummy/
|
672
|
-
- spec/dummy/
|
673
|
-
- spec/dummy/
|
674
|
-
- spec/dummy/
|
675
|
-
- spec/dummy/
|
676
|
-
- spec/dummy/
|
677
|
-
- spec/dummy/
|
678
|
-
- spec/dummy/
|
679
|
-
- spec/dummy/
|
680
|
-
- spec/dummy/
|
681
|
-
- spec/
|
682
|
-
- spec/
|
683
|
-
- spec/
|
645
|
+
- spec/dummy/db/migrate/20210326110524_create_references.rb
|
646
|
+
- spec/dummy/db/migrate/20190716130830_add_age_to_tree.rb
|
647
|
+
- spec/dummy/db/migrate/20210326140855_create_locations.rb
|
648
|
+
- spec/dummy/db/migrate/20190226174951_create_tree.rb
|
649
|
+
- spec/dummy/db/migrate/20190226173051_create_isle.rb
|
650
|
+
- spec/dummy/db/migrate/20210526084712_create_products.rb
|
651
|
+
- spec/dummy/db/migrate/20190226172951_create_user.rb
|
652
|
+
- spec/dummy/db/migrate/20210511141752_create_owners.rb
|
653
|
+
- spec/dummy/db/migrate/20190716135241_add_type_to_user.rb
|
654
|
+
- spec/dummy/db/schema.rb
|
655
|
+
- spec/dummy/lib/forest_liana/collections/island.rb
|
656
|
+
- spec/dummy/lib/forest_liana/collections/user.rb
|
657
|
+
- spec/dummy/lib/forest_liana/collections/location.rb
|
658
|
+
- spec/dummy/lib/forest_liana/controllers/owners_controller.rb
|
659
|
+
- spec/dummy/lib/forest_liana/controllers/owner_trees_controller.rb
|
660
|
+
- spec/dummy/config.ru
|
661
|
+
- spec/services/forest_liana/filters_parser_spec.rb
|
662
|
+
- spec/services/forest_liana/resource_updater_spec.rb
|
663
|
+
- spec/services/forest_liana/scope_manager_spec.rb
|
664
|
+
- spec/services/forest_liana/permissions_checker_acl_disabled_spec.rb
|
665
|
+
- spec/services/forest_liana/apimap_sorter_spec.rb
|
666
|
+
- spec/services/forest_liana/value_stat_getter_spec.rb
|
667
|
+
- spec/services/forest_liana/permissions_formatter_spec.rb
|
668
|
+
- spec/services/forest_liana/permissions_checker_live_queries_spec.rb
|
669
|
+
- spec/services/forest_liana/pie_stat_getter_spec.rb
|
670
|
+
- spec/services/forest_liana/permissions_checker_acl_enabled_spec.rb
|
671
|
+
- spec/services/forest_liana/ip_whitelist_checker_spec.rb
|
672
|
+
- spec/services/forest_liana/line_stat_getter_spec.rb
|
673
|
+
- spec/services/forest_liana/has_many_getter_spec.rb
|
674
|
+
- spec/services/forest_liana/schema_adapter_spec.rb
|
675
|
+
- spec/services/forest_liana/smart_action_field_validator_spec.rb
|
676
|
+
- spec/services/forest_liana/resources_getter_spec.rb
|
677
|
+
- spec/services/forest_liana/permissions_getter_spec.rb
|
684
678
|
- spec/requests/resources_spec.rb
|
685
|
-
- spec/requests/test.ru
|
686
|
-
- spec/requests/stats_spec.rb
|
687
|
-
- spec/requests/count_spec.rb
|
688
679
|
- spec/requests/cors_spec.rb
|
680
|
+
- spec/requests/stats_spec.rb
|
689
681
|
- spec/requests/authentications_spec.rb
|
690
|
-
- spec/
|
682
|
+
- spec/requests/actions_controller_spec.rb
|
683
|
+
- spec/requests/test.ru
|
684
|
+
- spec/requests/count_spec.rb
|
685
|
+
- spec/config/initializers/logger_spec.rb
|
686
|
+
- spec/rails_helper.rb
|
687
|
+
- spec/helpers/forest_liana/schema_helper_spec.rb
|
688
|
+
- spec/helpers/forest_liana/query_helper_spec.rb
|
689
|
+
- spec/lib/forest_liana/schema_file_updater_spec.rb
|
690
|
+
- spec/lib/forest_liana/bootstrapper_spec.rb
|