-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from govuk-one-login/OLH-2391
OLH-2391 - 02/25 Onboard RP: Welsh Gov - Rural Payment Wales
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Client } from "../interfaces/client.interface"; | ||
|
||
const ruralPaymentWales: Client = { | ||
clientId: { | ||
production: "SdpFRM0HdX38FfdbgRX8qzTl8sm", | ||
integration: "SdpFRM0HdX38FfdbgRX8qzTl8sm", | ||
nonProduction: "ruralPaymentWales", | ||
}, | ||
isAvailableInWelsh: true, | ||
isAllowed: true, | ||
clientType: "account", | ||
isHmrc: false, | ||
isReportSuspiciousActivityEnabled: false, | ||
showInClientSearch: { production: true, nonProduction: true }, | ||
translations: { | ||
en: { | ||
header: "Rural Payment Wales", | ||
description: "Apply for a Rural Payment Wales grant or payment.", | ||
linkText: "Go to your Rural Payment Wales account", | ||
linkUrl: "https://rpwonline.gov.wales", | ||
}, | ||
cy: { | ||
header: "Taliadau Gwledig Cymru", | ||
description: "Gwneud cais am grant neu daliad Taliadau Gwledig Cymru.", | ||
linkText: "Ewch i'ch cyfrif Taliad Gwledig Cymru", | ||
linkUrl: "https://rpwonline.gov.wales", | ||
}, | ||
}, | ||
}; | ||
|
||
export default ruralPaymentWales; |