spree_cm_commissioner 2.5.13.pre.patch2 → 2.5.13.pre.patch3
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: 93df32aae4991bb798b86f21c7ddfc3b71e13fc6c5a71ce4315a50eaa70ea1e6
|
|
4
|
+
data.tar.gz: 37574b773bbfc43008b28d390de0a032e9ab5db9d08d0307b10de20075fabcfe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17d233c16e34ee73284559a5536ba042c955a1a140d45cc172645d91cf4bbda83a7025a99886a5bd61ead85d16696c75af8c3db015aba9e5b6b2bc12ca25e489
|
|
7
|
+
data.tar.gz: 64ffb26a7ad38915f38d655878eba9521b4791cdbab6d6a51d558d81a4f3a3a112fad0063ad413f858b1d9997e750f3b62abc1deccf3da704d429560ef7ced69
|
data/Gemfile.lock
CHANGED
|
@@ -8,6 +8,15 @@ module Spree
|
|
|
8
8
|
before_action :require_spree_current_user
|
|
9
9
|
before_action :require_event_user
|
|
10
10
|
|
|
11
|
+
# Override index to disable server-side caching.
|
|
12
|
+
# We always want to show the latest exports and their download status.
|
|
13
|
+
# The app will cache files on its side to avoid unnecessary server requests once files are ready.
|
|
14
|
+
def index
|
|
15
|
+
render_serialized_payload do
|
|
16
|
+
serialize_collection(paginated_collection)
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
11
20
|
# POST /api/v2/operator/guest_json_gzips
|
|
12
21
|
# - taxon_id=1
|
|
13
22
|
# - resource_includes[]=[check_ins,check_ins.check_in_by]
|