-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6eb5df4
commit 4d814cf
Showing
9 changed files
with
119 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
22 changes: 22 additions & 0 deletions
22
app/uk/gov/hmrc/hmrcemailrenderer/templates/hipp/ApplicationCreated.scala.html
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,22 @@ | ||
@* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*@ | ||
|
||
@(params: Map[String, Any]) | ||
@uk.gov.hmrc.hmrcemailrenderer.templates.helpers.html.template_main(params, "You have created an application in The API Hub"){ | ||
<p style="margin: 0 0 30px; font-size: 19px;">You have created @params("applicationname") in The API Hub.</p> | ||
<p style="margin: 0 0 30px; font-size: 19px;">To access the application, visit /api-hub on the MDTP admin network.</p> | ||
<p style="margin: 0 0 30px; font-size: 19px;">From HMRC The API Hub</p> | ||
} |
4 changes: 4 additions & 0 deletions
4
app/uk/gov/hmrc/hmrcemailrenderer/templates/hipp/ApplicationCreated.scala.txt
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,4 @@ | ||
@(params: Map[String, Any]) | ||
You have created @{params("applicationname")} in The API Hub. | ||
To access the application, visit /api-hub on the MDTP admin network. | ||
From HMRC The API Hub |
22 changes: 22 additions & 0 deletions
22
app/uk/gov/hmrc/hmrcemailrenderer/templates/hipp/ApplicationDeleted.scala.html
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,22 @@ | ||
@* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*@ | ||
|
||
@(params: Map[String, Any]) | ||
@uk.gov.hmrc.hmrcemailrenderer.templates.helpers.html.template_main(params, "You have deleted an application from The API Hub"){ | ||
<p style="margin: 0 0 30px; font-size: 19px;">You have deleted @params("applicationname") from The API Hub.</p> | ||
<p style="margin: 0 0 30px; font-size: 19px;">This application has been removed from The API Hub.</p> | ||
<p style="margin: 0 0 30px; font-size: 19px;">From HMRC The API Hub</p> | ||
} |
4 changes: 4 additions & 0 deletions
4
app/uk/gov/hmrc/hmrcemailrenderer/templates/hipp/ApplicationDeleted.scala.txt
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,4 @@ | ||
@(params: Map[String, Any]) | ||
You have deleted @{params("applicationname")} from The API Hub. | ||
This application has been removed from The API Hub. | ||
From HMRC The API Hub |
23 changes: 23 additions & 0 deletions
23
app/uk/gov/hmrc/hmrcemailrenderer/templates/hipp/ApplicationDeletedTeam.scala.html
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,23 @@ | ||
@* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*@ | ||
|
||
@(params: Map[String, Any]) | ||
@uk.gov.hmrc.hmrcemailrenderer.templates.helpers.html.template_main(params, "Application deleted from The API Hub"){ | ||
<p style="margin: 0 0 30px; font-size: 19px;">The application @params("applicationname") has been deleted from The API Hub, all application details have been permanently deleted.</p> | ||
<p style="margin: 0 0 30px; font-size: 19px;">Any associated credentials will no longer work.</p> | ||
<p style="margin: 0 0 30px; font-size: 19px;">This application cannot be restored.</p> | ||
<p style="margin: 0 0 30px; font-size: 19px;">From HMRC The API Hub</p> | ||
} |
5 changes: 5 additions & 0 deletions
5
app/uk/gov/hmrc/hmrcemailrenderer/templates/hipp/ApplicationDeletedTeam.scala.txt
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,5 @@ | ||
@(params: Map[String, Any]) | ||
The application @{params("applicationname")} has been deleted from The API Hub, all application details have been permanently deleted. | ||
Any associated credentials will no longer work. | ||
This application cannot be restored. | ||
From HMRC The API Hub |
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