motor-admin 0.2.77 → 0.2.78
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/lib/motor/configs/sync_from_hash.rb +8 -0
- data/lib/motor/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: f7103c85ab2173fce73651f6c94df44400326c3a0f6900d02958166334919764
|
|
4
|
+
data.tar.gz: 2702651e4344a7e11a433e7af54a754413075e6de05fb56a12459f831a6087c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbebc6014289c848ac575afd1c21152e8671c7132af5806a0d550db254110e6b890c948dcdd216ccd54ec1f1849f0295237ad9f715775018b702059cff737e57
|
|
7
|
+
data.tar.gz: efd8735097f2419c606fafee91bab1543888d5e2d98719a2b6efafb7fe2706e3dbe7d55b0aace3265ff78ddac94056b494980f4d42f2444587136913c95c82f1
|
|
@@ -67,6 +67,8 @@ module Motor
|
|
|
67
67
|
|
|
68
68
|
record.update!(attrs)
|
|
69
69
|
end
|
|
70
|
+
|
|
71
|
+
ActiveRecordUtils.reset_id_sequence!(Motor::Config)
|
|
70
72
|
end
|
|
71
73
|
|
|
72
74
|
def sync_api_configs(configs_hash)
|
|
@@ -83,6 +85,8 @@ module Motor
|
|
|
83
85
|
end
|
|
84
86
|
|
|
85
87
|
archive_api_configs(configs_index, configs_hash[:api_configs])
|
|
88
|
+
|
|
89
|
+
ActiveRecordUtils.reset_id_sequence!(Motor::ApiConfig)
|
|
86
90
|
end
|
|
87
91
|
|
|
88
92
|
def archive_api_configs(configs_index, api_configs)
|
|
@@ -91,6 +95,7 @@ module Motor
|
|
|
91
95
|
end
|
|
92
96
|
end
|
|
93
97
|
|
|
98
|
+
# rubocop:disable Metrics/AbcSize
|
|
94
99
|
def sync_resources(configs_hash)
|
|
95
100
|
resources_index = Motor::Configs::LoadFromCache.load_resources.index_by(&:name)
|
|
96
101
|
|
|
@@ -105,7 +110,10 @@ module Motor
|
|
|
105
110
|
record.updated_at_will_change!
|
|
106
111
|
record.update!(attrs)
|
|
107
112
|
end
|
|
113
|
+
|
|
114
|
+
ActiveRecordUtils.reset_id_sequence!(Motor::Resource)
|
|
108
115
|
end
|
|
116
|
+
# rubocop:enable Metrics/AbcSize
|
|
109
117
|
|
|
110
118
|
def sync_taggable(records, config_items, configs_timestamp, update_proc)
|
|
111
119
|
processed_records, create_items = update_taggable_items(records, config_items, update_proc)
|
data/lib/motor/version.rb
CHANGED