Skip to content

Commit b981cf7

Browse files
committed
Merge remote-tracking branch 'origin/main' into WRSAT-443-add-pdf-attachment-to-email
2 parents e4e32cf + 3ab332b commit b981cf7

30 files changed

+201
-113
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ GEM
207207
rake (~> 13.3)
208208
googleapis-common-protos-types (1.22.0)
209209
google-protobuf (~> 4.26)
210-
grover (1.2.9)
210+
grover (1.2.10)
211211
nokogiri (~> 1)
212212
hexapdf (1.6.0)
213213
cmdparse (~> 3.0, >= 3.0.3)
@@ -862,7 +862,7 @@ CHECKSUMS
862862
google-protobuf (4.34.0-x86_64-linux-gnu) sha256=bbb333fbe79c16f35a2e2154cf29f3ce26f60390dba286b339861206d5435ef9
863863
google-protobuf (4.34.0-x86_64-linux-musl) sha256=0b75858a388b17e73aa4176df2e722762dbc92551b7075fdc562d33c1c6de0b0
864864
googleapis-common-protos-types (1.22.0) sha256=f97492b77bd6da0018c860d5004f512fe7cd165554d7019a8f4df6a56fbfc4c7
865-
grover (1.2.9) sha256=d4cd3e9f697cc073166a6d2c6163101a4ffa5c4b829d72613ed9148da1ec339b
865+
grover (1.2.10) sha256=989b21d1a0048e3793b9939b392152fb309c7a107911ad04c10e422de4e1479b
866866
hexapdf (1.6.0) sha256=78e32fc5a088a347bcb2cad4ab327cbdd0a0c5e1e77963b52460eef78d402582
867867
highline (3.1.2) sha256=67cbd34d19f6ef11a7ee1d82ffab5d36dfd5b3be861f450fc1716c7125f4bb4a
868868
i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5

app/assets/images/warning-sign.svg

Lines changed: 6 additions & 0 deletions
Loading

app/assets/images/work-warning.svg

Lines changed: 10 additions & 0 deletions
Loading

app/controllers/basic_info_case_number_controller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class BasicInfoCaseNumberController < QuestionController
1+
class BasicInfoCaseNumberController < ExemptionAwareQuestionController
22
include BasicInfoConcern
33

44
def self.attributes_edited

app/controllers/basic_info_details_controller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class BasicInfoDetailsController < QuestionController
1+
class BasicInfoDetailsController < ExemptionAwareQuestionController
22
include BasicInfoConcern
33
include DateHelper
44

app/controllers/basic_info_email_controller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class BasicInfoEmailController < QuestionController
1+
class BasicInfoEmailController < ExemptionAwareQuestionController
22
include BasicInfoConcern
33

44
before_action :set_from_download_form
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
class BasicInfoEmailNudgeController < QuestionController
1+
class BasicInfoEmailNudgeController < ExemptionAwareQuestionController
22
include BasicInfoConcern
33

44
def self.show?(screener)
5-
screener.email.blank?
5+
screener.email.blank? && super
66
end
77
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
class BasicInfoMilestoneController < QuestionController
1+
class BasicInfoMilestoneController < ExemptionAwareQuestionController
22
include BasicInfoConcern
33
end

app/controllers/basic_info_ssn_controller.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
class BasicInfoSsnController < QuestionController
1+
class BasicInfoSsnController < ExemptionAwareQuestionController
22
include BasicInfoConcern
33

44
def self.show?(screener)
5-
screener.case_number.blank?
5+
screener.case_number.blank? && super
66
end
77

88
def self.attributes_edited

app/controllers/concerns/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)