labimotion 1.4.0.rc6 → 1.4.0.rc8
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 541eee2d6e4830fdc77a3efff358ab44e6a63b14fc87e185172cabe04d9dd8d2
|
4
|
+
data.tar.gz: a490a78a05b5cb09caec29d04cf740051d5fe26eec3ae1f6c7e1dbfc9ef8684a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b31e2e6fac21410b0ec1e59ca38510363cd956cceb868fa85beb9c98ec59e46bb44f087664b30170c46b6832f281cb5a848534a22654f19e5258c8347c41788
|
7
|
+
data.tar.gz: 723af7ff7fb6fac0a99115693eaca283b497e42f549ba1c6305ee02f684d592c3cdf6312cfab2ce3b2e2ca9ae3265e31b42b7165e57401b253def7f5ed5dd21e
|
@@ -41,7 +41,7 @@ module Labimotion
|
|
41
41
|
end
|
42
42
|
post do
|
43
43
|
msg = create_repo_klass(params, current_user, request.headers['Origin'])
|
44
|
-
klass = Labimotion::DatasetKlassEntity.represent(DatasetKlass.all)
|
44
|
+
klass = Labimotion::DatasetKlassEntity.represent(Labimotion::DatasetKlass.all)
|
45
45
|
{ status: msg[:status], message: msg[:message], klass: klass }
|
46
46
|
rescue StandardError => e
|
47
47
|
Labimotion.log_exception(e, current_user)
|
@@ -248,7 +248,7 @@ module Labimotion
|
|
248
248
|
end
|
249
249
|
post do
|
250
250
|
msg = create_repo_klass(params, current_user, request.headers['Origin'])
|
251
|
-
klass = Labimotion::ElementKlassEntity.represent(ElementKlass.all)
|
251
|
+
klass = Labimotion::ElementKlassEntity.represent(Labimotion::ElementKlass.all)
|
252
252
|
{ status: msg[:status], message: msg[:message], klass: klass }
|
253
253
|
rescue StandardError => e
|
254
254
|
Labimotion.log_exception(e, current_user)
|
@@ -377,7 +377,7 @@ module Labimotion
|
|
377
377
|
end
|
378
378
|
route_param :id do
|
379
379
|
before do
|
380
|
-
@element_policy = ElementPolicy.new(current_user, Element.find(params[:id]))
|
380
|
+
@element_policy = ElementPolicy.new(current_user, Labimotion::Element.find(params[:id]))
|
381
381
|
error!('401 Unauthorized', 401) unless current_user.matrix_check_by_name('genericElement') && @element_policy.read?
|
382
382
|
rescue ActiveRecord::RecordNotFound
|
383
383
|
error!('404 Not Found', 404)
|
@@ -125,7 +125,7 @@ module Labimotion
|
|
125
125
|
end
|
126
126
|
post do
|
127
127
|
msg = create_repo_klass(params, current_user, request.headers['Origin'])
|
128
|
-
klass = Labimotion::SegmentKlassEntity.represent(SegmentKlass.all)
|
128
|
+
klass = Labimotion::SegmentKlassEntity.represent(Labimotion::SegmentKlass.all)
|
129
129
|
{ status: msg[:status], message: msg[:message], klass: klass }
|
130
130
|
rescue StandardError => e
|
131
131
|
Labimotion.log_exception(e, current_user)
|
@@ -9,7 +9,7 @@ module Labimotion
|
|
9
9
|
extend Grape::API::Helpers
|
10
10
|
|
11
11
|
def klass_list(el_klass, is_active=false)
|
12
|
-
scope = SegmentKlass.all
|
12
|
+
scope = Labimotion::SegmentKlass.all
|
13
13
|
scope = scope.where(is_active: is_active) if is_active.present? && is_active == true
|
14
14
|
scope = scope.joins(:element_klass).where(klass_element: params[:element], is_active: true) if el_klass.present?
|
15
15
|
scope.order('place') || []
|
data/lib/labimotion/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: labimotion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.0.
|
4
|
+
version: 1.4.0.rc8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chia-Lin Lin
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-07-
|
12
|
+
date: 2024-07-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|