Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix/APPEALS-14895 #18863

Merged
merged 7 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 17 additions & 10 deletions client/app/help/HelpRootView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,36 @@ const HelpRootView = () => {

const pages = [
{ name: 'Certification Help',
url: '/certification/help' },
url: '/certification/help',
ariaLabel: 'Click for help resources/frequently asked questions on using Caseflow Certification' },
{ name: 'Dispatch Help',
url: '/dispatch/help' },
url: '/dispatch/help',
ariaLabel: 'Click for help resources/frequently asked questions on using Caseflow Dispatch' },
{ name: 'Reader Help',
url: '/reader/help' },
url: '/reader/help',
ariaLabel: 'Click for help resources/frequently asked questions on using Caseflow Reader' },
{ name: 'Hearings Help',
url: '/hearing_prep/help' },
url: '/hearing_prep/help',
ariaLabel: 'Click for help resources/frequently asked questions on using Caseflow Hearings' },
{ name: 'Intake Help',
url: '/intake/help' },
url: '/intake/help',
ariaLabel: 'Click for help resources/frequently asked questions on using Caseflow Intake' },
{ name: 'Queue Help',
url: '/queue/help' },
url: '/queue/help',
ariaLabel: 'Click for help resources/frequently asked questions on using Caseflow Queue' },
{ name: 'VHA Help',
url: '/vha/help' },
url: '/vha/help',
ariaLabel: 'Click for help resources/frequently asked questions on using Caseflow VHA' },
];

return <div className="cf-help-content">

<p><CaseFlowLink href="/search">Go Back</CaseFlowLink></p>

<h1>Caseflow Help</h1>
<h1 aria-label="Caseflow help resources page. Choose one of the links below" tabIndex={0}>Caseflow Help</h1>
<ul id="toc" className="usa-unstyled-list">
{pages.map(({ name, url }) =>
<li key={name}><Link to={url}>{name}</Link></li>
{pages.map(({ name, url, ariaLabel }) =>
<li key={name}><Link to={url} aria-label={ariaLabel}>{name}</Link></li>
)}
</ul>
</div>;
Expand Down
10 changes: 5 additions & 5 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
t.boolean "appeal_docketed", default: false, null: false, comment: "When true, appeal has been docketed"
t.bigint "appeal_id", null: false, comment: "AMA or Legacy Appeal ID"
t.string "appeal_type", null: false, comment: "Appeal Type (Appeal or LegacyAppeal)"
t.datetime "created_at", null: false, comment: "Date and Time the record was inserted into the table"
t.datetime "created_at", null: false
t.bigint "created_by_id", null: false, comment: "User id of the user that inserted the record"
t.boolean "decision_mailed", default: false, null: false, comment: "When true, appeal has decision mail request complete"
t.boolean "hearing_postponed", default: false, null: false, comment: "When true, appeal has hearing postponed and no hearings scheduled"
Expand All @@ -100,7 +100,7 @@
t.boolean "privacy_act_complete", default: false, null: false, comment: "When true, appeal has a privacy act request completed"
t.boolean "privacy_act_pending", default: false, null: false, comment: "When true, appeal has a privacy act request still open"
t.boolean "scheduled_in_error", default: false, null: false, comment: "When true, hearing was scheduled in error and none scheduled"
t.datetime "updated_at", comment: "Date and time the record was last updated"
t.datetime "updated_at"
t.bigint "updated_by_id", comment: "User id of the last user that updated the record"
t.boolean "vso_ihp_complete", default: false, null: false, comment: "When true, appeal has a VSO IHP request completed"
t.boolean "vso_ihp_pending", default: false, null: false, comment: "When true, appeal has a VSO IHP request pending"
Expand Down Expand Up @@ -1266,7 +1266,7 @@
t.string "appeals_type", null: false, comment: "Type of Appeal"
t.datetime "created_at", comment: "Timestamp of when Noticiation was Created"
t.boolean "email_enabled", default: true, null: false
t.text "email_notification_content", comment: "Full Email Text Content of Notification"
t.string "email_notification_content", comment: "Full Email Text Content of Notification"
t.string "email_notification_external_id", comment: "VA Notify Notification Id for the email notification send through their API "
t.string "email_notification_status", comment: "Status of the Email Notification"
t.date "event_date", null: false, comment: "Date of Event"
Expand All @@ -1277,8 +1277,8 @@
t.string "participant_id", comment: "ID of Participant"
t.string "recipient_email", comment: "Participant's Email Address"
t.string "recipient_phone_number", comment: "Participants Phone Number"
t.text "sms_notification_content", comment: "Full SMS Text Content of Notification"
t.string "sms_notification_external_id"
t.string "sms_notification_content", comment: "Full SMS Text Content of Notification"
t.string "sms_notification_external_id", comment: "VA Notify Notification Id for the sms notification send through their API "
t.string "sms_notification_status", comment: "Status of SMS/Text Notification"
t.datetime "updated_at", comment: "TImestamp of when Notification was Updated"
t.index ["appeals_id", "appeals_type"], name: "index_appeals_notifications_on_appeals_id_and_appeals_type"
Expand Down
Loading