ecoportal-api 0.5.5 → 0.5.6
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/CHANGELOG.md +10 -0
- data/lib/ecoportal/api/internal/preferences.rb +9 -1
- data/lib/ecoportal/api/v1/person.rb +1 -1
- data/lib/ecoportal/api/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31190d7d5719d21b732605d97eccaad0c042f9fc3212fc5f181e6e18e6f12771
|
4
|
+
data.tar.gz: e7bb04368723c7da36ca8408b05088ed09753c9f9fa53722b32c3ef0df3f6e0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f10ac460fa44b8750825f46648f54d394b36b9a4bec95b138724dd79f278db4014540bb268fecf9e4a3e719b8eb03da1d398a15203776706643eaa9437ba9fe8
|
7
|
+
data.tar.gz: 67185025081f552f608ba0512fce293ef5a731d31fee2b2132e276eda04f85bd135b0f268936209af1e948ff066f537d7834c005a302ca251f75359d7cfeb758
|
data/CHANGELOG.md
ADDED
@@ -8,7 +8,15 @@ module Ecoportal
|
|
8
8
|
:show_coming_soon,
|
9
9
|
:show_recently_visited_forms,
|
10
10
|
:show_tasks,
|
11
|
-
:show_task_bubbles
|
11
|
+
:show_task_bubbles,
|
12
|
+
:kiosk_enabled,
|
13
|
+
:kiosk_workflow_message,
|
14
|
+
:kiosk_create_button_label,
|
15
|
+
:kiosk_create_button_help,
|
16
|
+
:kiosk_return_button_label,
|
17
|
+
:kiosk_return_button_help,
|
18
|
+
:kiosk_dashboard_button_label,
|
19
|
+
:kiosk_dashboard_button_help
|
12
20
|
].each do |field|
|
13
21
|
define_method(field) do
|
14
22
|
if doc.key?(field)
|
@@ -8,7 +8,7 @@ module Ecoportal
|
|
8
8
|
# @attr_reader subordinates [Integer] the number of people this person is supervisor of.
|
9
9
|
# @attr details [PersonDetails, nil] the details of the person or `nil` if missing.
|
10
10
|
class Person < Common::BaseModel
|
11
|
-
passthrough :id, :external_id, :name, :email, :supervisor_id, :subordinates, :filter_tags
|
11
|
+
passthrough :id, :external_id, :name, :email, :supervisor_id, :subordinates, :filter_tags, :freemium
|
12
12
|
|
13
13
|
class_resolver :person_schema_class, "Ecoportal::API::V1::PersonSchema"
|
14
14
|
class_resolver :person_details_class, "Ecoportal::API::V1::PersonDetails"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecoportal-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tapio Saarinen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -149,6 +149,7 @@ files:
|
|
149
149
|
- ".rubocop.yml"
|
150
150
|
- ".travis.yml"
|
151
151
|
- ".yardopts"
|
152
|
+
- CHANGELOG.md
|
152
153
|
- Gemfile
|
153
154
|
- Gemfile.lock
|
154
155
|
- LICENSE
|
@@ -215,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
216
|
- !ruby/object:Gem::Version
|
216
217
|
version: '0'
|
217
218
|
requirements: []
|
218
|
-
rubygems_version: 3.0.
|
219
|
+
rubygems_version: 3.0.3
|
219
220
|
signing_key:
|
220
221
|
specification_version: 4
|
221
222
|
summary: A collection of helpers for interacting with the ecoPortal MS's various APIs
|