cb-api 18.5.5 → 18.5.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -0
- data/lib/cb/models/implementations/application/form.rb +2 -1
- data/lib/cb/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: de05df4a1a4d6a791a9674685920e97b5c2bf48c
|
4
|
+
data.tar.gz: 8b4d901ee83646279261a18b838f90ff27f6f905
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a04f12ebf7ef2fbc9b33f5547d2bd4c8d73124155ec91f03b5515300968f61db77724f27e56a7eeaf69fc8ae3efca8689fb6ef94ca5a094c1f0d7e28c8510ef
|
7
|
+
data.tar.gz: 07b07a2e45f06dc3aa2fd3a23c204127c6f65bdad1065af1d09b52632dd62a7e5d6ad334b7bbaff7fa221c54443e16764d4a02acd66cad190665332d48578edb
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,7 @@ Version History
|
|
3
3
|
* All Version bumps are required to update this file as well!!
|
4
4
|
----
|
5
5
|
|
6
|
+
* 18.5.6 Adding an additional field to application form
|
6
7
|
* 18.5.5 Turn company recs response into an array if its not.
|
7
8
|
* 18.5.4 Catch nil Jobs for company recs.
|
8
9
|
* 18.5.3 Catch nil case before even fetching.
|
@@ -14,7 +14,7 @@ module Cb
|
|
14
14
|
class Form < ApiResponseModel
|
15
15
|
attr_reader :job_did, :job_title, :is_shared_apply, :question_list, :requirements,
|
16
16
|
:degree_required, :travel_required, :experience_required, :external_application,
|
17
|
-
:total_questions, :total_required_questions
|
17
|
+
:total_questions, :total_required_questions, :is_two_step_apply
|
18
18
|
|
19
19
|
protected
|
20
20
|
|
@@ -36,6 +36,7 @@ module Cb
|
|
36
36
|
@total_required_questions = api_response['TotalRequiredQuestions'].to_i
|
37
37
|
@experience_required = api_response['ExperienceRequired']
|
38
38
|
@external_application = api_response['ExternalApplication']
|
39
|
+
@is_two_step_apply = api_response['IsTwoStepApply']
|
39
40
|
@question_list = extracted_questions
|
40
41
|
end
|
41
42
|
|
data/lib/cb/version.rb
CHANGED