From b8fa2a296580ab718090ae029cf6fc735a211cbf Mon Sep 17 00:00:00 2001 From: chandapwes <67353485+chandapwes@users.noreply.github.com> Date: Thu, 21 Oct 2021 15:06:01 -0600 Subject: [PATCH 1/2] add faq information on how to change account info --- data/seeds/007-faqs.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/data/seeds/007-faqs.js b/data/seeds/007-faqs.js index 9cb39a0e..445e27b9 100644 --- a/data/seeds/007-faqs.js +++ b/data/seeds/007-faqs.js @@ -36,6 +36,12 @@ exports.seed = function (knex) { answer: 'Both incoming data and new users are vetted manually by an administrator ensuring that both the data and user base remain reliable.', }, + { + faq_id: 105, + question: 'How do I change my account information?', + answer: + 'Account information is managed through Okta. To change your account information, log into your Okta account to make any necessary changes.', + }, ]); }); }; From 44a4031d2370974a6ef41e4c28f74471a7413ada Mon Sep 17 00:00:00 2001 From: chandapwes <67353485+chandapwes@users.noreply.github.com> Date: Thu, 21 Oct 2021 15:37:04 -0600 Subject: [PATCH 2/2] added account changes question to faq --- data/seeds/007-faqs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/seeds/007-faqs.js b/data/seeds/007-faqs.js index 445e27b9..840b1730 100644 --- a/data/seeds/007-faqs.js +++ b/data/seeds/007-faqs.js @@ -40,7 +40,7 @@ exports.seed = function (knex) { faq_id: 105, question: 'How do I change my account information?', answer: - 'Account information is managed through Okta. To change your account information, log into your Okta account to make any necessary changes.', + 'Account information is managed through Okta. To change your account information, log into your Okta account to make necessary changes.', }, ]); });