Skip to content

Commit

Permalink
add ein to appropriate concerns
Browse files Browse the repository at this point in the history
  • Loading branch information
csheepy committed Aug 15, 2023
1 parent 8170b1a commit e5da652
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/controllers/unrecognized_appellants_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def unrecognized_appellant_params
def unrecognized_party_details
[
:party_type, :name, :middle_name, :last_name, :suffix, :address_line_1, :address_line_2, :date_of_birth,
:address_line_3, :city, :state, :zip, :country, :phone_number, :email_address, :ein
:address_line_3, :city, :state, :zip, :country, :phone_number, :email_address, :ein, :ssn
]
end
end
2 changes: 1 addition & 1 deletion app/models/concerns/has_unrecognized_party_detail.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module HasUnrecognizedPartyDetail
extend ActiveSupport::Concern

included do
delegate :name, :first_name, :middle_name, :last_name, :suffix, :ssn,
delegate :name, :first_name, :middle_name, :last_name, :suffix, :ein, :ssn,
:address, :address_line_1, :address_line_2, :address_line_3,
:city, :state, :zip, :country, :date_of_birth,
:phone_number, :email_address, :party_type,
Expand Down
2 changes: 1 addition & 1 deletion app/models/other_claimant.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Currently used for attorney fee cases when the attorney isn't found in the BGS attorney database.

class OtherClaimant < Claimant
delegate :name, :first_name, :middle_name, :last_name, :suffix, :ssn,
delegate :name, :first_name, :middle_name, :last_name, :suffix, :ein, :ssn,
:address, :address_line_1, :address_line_2, :address_line_3,
:city, :state, :zip, :country, :date_of_birth,
:email_address, :phone_number,
Expand Down

0 comments on commit e5da652

Please sign in to comment.