-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* complete initial pass on new ssn field reqs * add slight modification to new family policy method * add event listener for accessibility * complete spec for new endpoints * remove unnecessary changes from enroll system config file * adds ssn masks to my household section * bearer failure * bearer failure * bearer failure * fix failing spec in family policy * remove console.logs * make env var true on failing spec * bearer failure * readd bearer fix * remove excessive line breaks * remove unnecessary helper_method in family_members controller * complete first pass at applicant ssn field masking * remove ssn display in all admin tables * making brief switch to update broker permissions * complete initial pass on new ssn field reqs * add event listener for accessibility * remove unnecessary changes from enroll system config file * adds ssn masks to my household section * bearer failure * bearer failure * bearer failure * bearer failure * readd bearer fix * remove excessive line breaks * remove unnecessary helper_method in family_members controller * complete first pass at applicant ssn field masking * add addtl permissions and update specs * remove unnecessary line break * finalize permission details * complete first iteration of ssn fields * remove changes for testing drop enrollment members * remove comment * reformat explanatory comment * remove unused attrs from ssn_form_presenter * update dependent form input * remove unused id from edit enrollment partial * plan shopping options page fixes (#4274) plan shopping options fixes * dont have secondary modal for dependent table (#4273) * don't open secondary modal when in comparison modal * forgot to commit a file * rubocop * fix spec by undoing rubocop suggestions * enrollment submitted logic fix * more aptc logic * aptc calculator adjust amount applied (#4286) adjust the max amount of aptc to account for if the aptc is higher than the premium * aptc calc results should have round values (#4288) * fix rounding issue * fix rounding * use default cancel translation sting (#4290) * fix issue with failing cucumber * remove console log in coffee file * remove family_helper changes * remove changes with unemployment form * add translations and update w/feedback from comments * remove extra row column in table * add admin css file * small changes for rubocop * reversed logic on column list --------- Co-authored-by: Kristin Merbach <[email protected]> Co-authored-by: kristinmerbach <[email protected]>
- Loading branch information
1 parent
5262b90
commit d345140
Showing
26 changed files
with
397 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
<% if presenter&.obscured_ssn&.size %> | ||
<div data-controller='person' id='admin-ssn-input-field' class='admin-ssn-block d-flex align-items-center justify-content-start'> | ||
<% if include_label %> | ||
<h5 class='mr-1'><b><%= l10n('ssn') %>: </b></h5> | ||
<% end %> | ||
<span class="hidden ssn-input ssn-input-<%= presenter.person_id %>"></span> | ||
<span class="ssn-facade ssn-facade-<%= presenter.person_id %> font-weight-bold">• • • • • • • • •</span> | ||
<%= image_pack_tag 'icons/eye-off.svg', | ||
class: "my-auto ssn-eye-off ssn-eye-off-#{presenter.person_id}", | ||
alt: "view ssn icon", | ||
tabindex: 0, | ||
data: { | ||
remote: true, | ||
type: presenter.object_type, | ||
id: presenter.person_id, | ||
family_id: presenter.family_id, | ||
action: "click->person#showSsn" | ||
} | ||
%> | ||
<%= image_pack_tag "icons/eye-on.svg", | ||
class: "hidden ssn-eye-on ssn-eye-on-#{presenter.person_id}", | ||
alt: "hide ssn icon", | ||
tabindex: 0, | ||
remote: true, | ||
data: { | ||
id: presenter.person_id, | ||
action: "click->person#hideSsn" | ||
} | ||
%> | ||
</div> | ||
<% elsif include_label %> | ||
<h5><b>SSN:</b></h5> | ||
<% end %> |
Oops, something went wrong.