iqvoc 3.2.10 → 3.2.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/labeling/skos/base.rb +1 -1
- data/lib/iqvoc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ae236be5697d7237cb45afb9dd53068dfd9bacd
|
4
|
+
data.tar.gz: e62dd2476e5ca0e2f1a0fae26d44f9f998afc952
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 689f81f49f35fdff9e5a1e77079b55a609ea73305d42d8144869122bc525b0e8ba08ec4418b14afeb425a62bc706a988367e0144c3ec1ec38f9917687484906a
|
7
|
+
data.tar.gz: 615204c7d6088cccbe9c22a018e99d6ffc49e2d924a94c6d9c2fe5cd7cdd8ac627075ff2693b27d68e3973f3d1207d7c4395e31aabedd63761054a5dc372b4a1
|
@@ -57,7 +57,7 @@ class Labeling::SKOS::Base < Labeling::Base
|
|
57
57
|
collection = Collection::Unordered.where(:origin => params[:collection_origin]).last
|
58
58
|
if collection
|
59
59
|
# scope = scope.includes(:owner => :collection_members)
|
60
|
-
scope = scope.joins("LEFT OUTER JOIN
|
60
|
+
scope = scope.joins("LEFT OUTER JOIN collection_members ON collection_members.target_id = concepts.id")
|
61
61
|
scope = scope.where("#{Collection::Member::Base.table_name}.collection_id" => collection)
|
62
62
|
else
|
63
63
|
raise "Collection with Origin #{params[:collection_origin]} not found!"
|
data/lib/iqvoc/version.rb
CHANGED