Skip to content

Commit

Permalink
[ART] lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nihil2501 committed Dec 31, 2024
1 parent ec98b74 commit 56ff35f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ class PowerOfAttorneyForm < ApplicationRecord
class_name: 'AccreditedRepresentativePortal::PowerOfAttorneyRequest',
inverse_of: :power_of_attorney_form


has_kms_key

has_encrypted(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def set_claimant_type

if power_of_attorney_form.parsed_data['veteran']
self.claimant_type = ClaimantTypes::VETERAN
return
nil
end
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,54 +296,54 @@
'claimant_id' => poa_request.claimant_id,
'claimant_type' => 'dependent',
'created_at' => time,
"power_of_attorney_form" => {
"authorizations" => {
"record_disclosure" => true,
"record_disclosure_limitations" => [],
"address_change" => true
'power_of_attorney_form' => {
'authorizations' => {
'record_disclosure' => true,
'record_disclosure_limitations' => [],
'address_change' => true
},
"dependent" => {
"name" => {
"first" => "John",
"middle" => "Middle",
"last" => "Doe"
'dependent' => {
'name' => {
'first' => 'John',
'middle' => 'Middle',
'last' => 'Doe'
},
"address" => {
"address_line1" => "123 Main St",
"address_line2" => "Apt 1",
"city" => "Springfield",
"state_code" => "IL",
"country" => "US",
"zip_code" => "62704",
"zip_code_suffix" => "6789"
'address' => {
'address_line1' => '123 Main St',
'address_line2' => 'Apt 1',
'city' => 'Springfield',
'state_code' => 'IL',
'country' => 'US',
'zip_code' => '62704',
'zip_code_suffix' => '6789'
},
"date_of_birth" => "1980-12-31",
"relationship" => "Spouse",
"phone" => "1234567890",
"email" => "[email protected]"
'date_of_birth' => '1980-12-31',
'relationship' => 'Spouse',
'phone' => '1234567890',
'email' => '[email protected]'
},
"veteran" => {
"name" => {
"first" => "John",
"middle" => "Middle",
"last" => "Doe"
'veteran' => {
'name' => {
'first' => 'John',
'middle' => 'Middle',
'last' => 'Doe'
},
"address" => {
"address_line1" => "123 Main St",
"address_line2" => "Apt 1",
"city" => "Springfield",
"state_code" => "IL",
"country" => "US",
"zip_code" => "62704",
"zip_code_suffix" => "6789"
'address' => {
'address_line1' => '123 Main St',
'address_line2' => 'Apt 1',
'city' => 'Springfield',
'state_code' => 'IL',
'country' => 'US',
'zip_code' => '62704',
'zip_code_suffix' => '6789'
},
"ssn" => "123456789",
"va_file_number" => "123456789",
"date_of_birth" => "1980-12-31",
"service_number" => "123456789",
"service_branch" => "ARMY",
"phone" => "1234567890",
"email" => "[email protected]"
'ssn' => '123456789',
'va_file_number' => '123456789',
'date_of_birth' => '1980-12-31',
'service_number' => '123456789',
'service_branch' => 'ARMY',
'phone' => '1234567890',
'email' => '[email protected]'
}
},
'resolution' => {
Expand Down

0 comments on commit 56ff35f

Please sign in to comment.