egov_utils 1.5.0.alpha2 → 1.5.0.alpha4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/egov_utils/towns_controller.rb +11 -0
- data/app/models/egov_utils/address.rb +10 -0
- data/app/models/egov_utils/person.rb +2 -5
- data/app/services/egov_utils/iszr/addresses/fetch_for_natural_person.rb +2 -2
- data/app/services/egov_utils/iszr/client.rb +27 -0
- data/app/services/egov_utils/iszr/find_result_by_aifo.rb +86 -0
- data/app/services/egov_utils/iszr/natural_people/create_request.rb +69 -26
- data/app/services/egov_utils/iszr/request.rb +20 -2
- data/app/views/egov_utils/people/_form.html.haml +5 -7
- data/app/views/egov_utils/people/_new_form.html.haml +90 -38
- data/app/views/egov_utils/users/index.html.haml +1 -0
- data/config/obec.json +46097 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20240711130901_add_remote_id_to_people.rb +5 -0
- data/lib/egov_utils/version.rb +1 -1
- metadata +8 -3
data/config/routes.rb
CHANGED
data/lib/egov_utils/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: egov_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.0.
|
4
|
+
version: 1.5.0.alpha4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ondřej Ezr
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -612,6 +612,7 @@ files:
|
|
612
612
|
- app/controllers/egov_utils/registration_requests_controller.rb
|
613
613
|
- app/controllers/egov_utils/roles_controller.rb
|
614
614
|
- app/controllers/egov_utils/sessions_controller.rb
|
615
|
+
- app/controllers/egov_utils/towns_controller.rb
|
615
616
|
- app/controllers/egov_utils/users_controller.rb
|
616
617
|
- app/helpers/egov_utils/application_helper.rb
|
617
618
|
- app/helpers/egov_utils/enum_helper.rb
|
@@ -657,6 +658,8 @@ files:
|
|
657
658
|
- app/services/egov_utils/iszr/addresses/fetch_for_legal_person/from_sample_data.rb
|
658
659
|
- app/services/egov_utils/iszr/addresses/fetch_for_natural_person.rb
|
659
660
|
- app/services/egov_utils/iszr/addresses/fetch_for_natural_person/from_sample_data.rb
|
661
|
+
- app/services/egov_utils/iszr/client.rb
|
662
|
+
- app/services/egov_utils/iszr/find_result_by_aifo.rb
|
660
663
|
- app/services/egov_utils/iszr/legal_people/create_request.rb
|
661
664
|
- app/services/egov_utils/iszr/legal_people/dev_search.rb
|
662
665
|
- app/services/egov_utils/iszr/legal_people/prod_search.rb
|
@@ -730,6 +733,7 @@ files:
|
|
730
733
|
- config/kraj.csv
|
731
734
|
- config/locales/cs.yml
|
732
735
|
- config/locales/en.yml
|
736
|
+
- config/obec.json
|
733
737
|
- config/okres.csv
|
734
738
|
- config/routes.rb
|
735
739
|
- db/migrate/20170313100505_create_egov_utils_addresses.rb
|
@@ -757,6 +761,7 @@ files:
|
|
757
761
|
- db/migrate/20230412063325_add_days_before_archive_to_egov_utils_users.rb
|
758
762
|
- db/migrate/20230427091407_add_fields_to_registration_requests.rb
|
759
763
|
- db/migrate/20231006131159_add_supervisor_assignment_to_registration_requests.rb
|
764
|
+
- db/migrate/20240711130901_add_remote_id_to_people.rb
|
760
765
|
- lib/azahara_schema_currency.rb
|
761
766
|
- lib/azahara_schema_currency/aggregation_attribute_patch.rb
|
762
767
|
- lib/azahara_schema_currency/association_attribute_patch.rb
|
@@ -919,7 +924,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
919
924
|
- !ruby/object:Gem::Version
|
920
925
|
version: '0'
|
921
926
|
requirements: []
|
922
|
-
rubygems_version: 3.5.
|
927
|
+
rubygems_version: 3.5.16
|
923
928
|
signing_key:
|
924
929
|
specification_version: 4
|
925
930
|
summary: The eGoverment utilities is set of functionalities to support basic eGoverment
|