# Enable expirations.
From c48afaddc30bd01e4bb6b799ca293d98a5fa06db Mon Sep 17 00:00:00 2001
From: brockfanning <1319083+brockfanning@users.noreply.github.com>
Date: Mon, 23 Mar 2026 16:21:53 -0400
Subject: [PATCH 15/17] Update includes.settings.php
---
docroot/sites/default/settings/includes.settings.php | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docroot/sites/default/settings/includes.settings.php b/docroot/sites/default/settings/includes.settings.php
index f5e34ab27..e78651255 100644
--- a/docroot/sites/default/settings/includes.settings.php
+++ b/docroot/sites/default/settings/includes.settings.php
@@ -41,14 +41,14 @@
case 'test':
$config['samlauth.authentication']['sp_entity_id'] = 'doj_foia_api_test';
- $config['samlauth.authentication']['idp_single_sign_on_service'] = 'https://login.stage.max.gov/idp/profile/SAML2/Redirect/SSO';
- $config['samlauth.authentication']['idp_entity_id'] = 'https://login.stage.max.gov/idp/shibboleth';
+ $config['samlauth.authentication']['idp_single_sign_on_service'] = 'https://int.fedhub.hhs.gov/ABaaS/idp';
+ $config['samlauth.authentication']['idp_entity_id'] = 'https://int.fedhub.hhs.gov/ABaaS/idp';
break;
case 'uat':
$config['samlauth.authentication']['sp_entity_id'] = 'doj_foia_api_uat';
- $config['samlauth.authentication']['idp_single_sign_on_service'] = 'https://login.stage.max.gov/idp/profile/SAML2/Redirect/SSO';
- $config['samlauth.authentication']['idp_entity_id'] = 'https://login.stage.max.gov/idp/shibboleth';
+ $config['samlauth.authentication']['idp_single_sign_on_service'] = 'https://int.fedhub.hhs.gov/ABaaS/idp';
+ $config['samlauth.authentication']['idp_entity_id'] = 'https://int.fedhub.hhs.gov/ABaaS/idp';
break;
case 'prod':
From 850652784fed4921c49a874b5ffc69627d3524f0 Mon Sep 17 00:00:00 2001
From: Brock Fanning <1319083+brockfanning@users.noreply.github.com>
Date: Wed, 25 Mar 2026 14:27:03 +0000
Subject: [PATCH 16/17] FOIA-532: Regex for HHS FDA fees field.
---
config/default/webform.webform.hhs_fda_form.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/config/default/webform.webform.hhs_fda_form.yml b/config/default/webform.webform.hhs_fda_form.yml
index 70b49f764..54cb1b8f2 100644
--- a/config/default/webform.webform.hhs_fda_form.yml
+++ b/config/default/webform.webform.hhs_fda_form.yml
@@ -117,8 +117,9 @@ elements: |-
fee_amount_willing:
'#type': textfield
'#title': 'The amount of money you’re willing to pay in fees, if any'
- '#help': 'There is no initial fee required to submit a FOIA request, but the FOIA does allow people requesting records to be charged certain types of fees in some instances.'
- '#pattern': '^(?=.)([+\-\$]?([0-9]*)(\.([0-9]+))?)$'
+ '#help': 'There is no initial fee required to submit a FOIA request, but the FOIA does allow people requesting records to be charged certain types of fees in some instances.
'
+ '#pattern': '^(?=(?:\D*\d){1,6}\D*$)[+\-\$]?([0-9]*)(\.([0-9]+))?$'
+ '#pattern_error': 'Please enter a number between 0 and 999999.'
'#counter_type': word
'#counter_maximum': 1
expedited_processing:
From c57311ab86c99e60efa7e781c7fc7dd071859299 Mon Sep 17 00:00:00 2001
From: Brock Fanning <1319083+brockfanning@users.noreply.github.com>
Date: Thu, 26 Mar 2026 13:23:11 +0000
Subject: [PATCH 17/17] FOIA-540: FedHub for production.
---
docroot/sites/default/settings/includes.settings.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docroot/sites/default/settings/includes.settings.php b/docroot/sites/default/settings/includes.settings.php
index e78651255..c7fe5754b 100644
--- a/docroot/sites/default/settings/includes.settings.php
+++ b/docroot/sites/default/settings/includes.settings.php
@@ -53,8 +53,8 @@
case 'prod':
$config['samlauth.authentication']['sp_entity_id'] = 'doj_foia_api_prod';
- $config['samlauth.authentication']['idp_single_sign_on_service'] = 'https://login.max.gov/idp/profile/SAML2/Redirect/SSO';
- $config['samlauth.authentication']['idp_entity_id'] = 'https://login.max.gov/idp/shibboleth';
+ $config['samlauth.authentication']['idp_single_sign_on_service'] = 'https://fedhub.hhs.gov/ABaaS/idp';
+ $config['samlauth.authentication']['idp_entity_id'] = 'https://fedhub.hhs.gov/ABaaS/idp';
break;
}