forked from Hounslow-Connect/admin
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
13 changed files
with
27 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,9 +48,9 @@ | |
|
||
<span class="govuk-footer__licence-description"> | ||
For any feedback or technical queries, please email | ||
<gov-link href="mailto:[email protected]" | ||
>[email protected]</gov-link | ||
> | ||
<gov-link :href="`mailto:${contactEmail}`">{{ | ||
contactEmail | ||
}}</gov-link> | ||
</span> | ||
</div> | ||
<div class="govuk-footer__meta-item"></div> | ||
|
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 |
---|---|---|
|
@@ -12,8 +12,8 @@ | |
<gov-body size="l"> | ||
From here, you can add and edit your pages on Hounslow Connect, as | ||
well as manage referrals into your service. For any support, contact | ||
<gov-link href="mailto:[email protected]"> | ||
[email protected] | ||
<gov-link :href="`mailto:${contactEmail}`"> | ||
{{ contactEmail }} | ||
</gov-link> | ||
or view our | ||
<gov-link :to="{ name: 'help-index' }">help videos</gov-link> | ||
|
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 |
---|---|---|
|
@@ -23,9 +23,7 @@ | |
<gov-body> | ||
If you haven't heard back from us within 5 working days please email the | ||
team at | ||
<gov-link href="mailto:[email protected]" | ||
>[email protected]</gov-link | ||
> | ||
<gov-link :href="`mailto:${contactEmail}`">{{ contactEmail }}</gov-link> | ||
</gov-body> | ||
|
||
<gov-button :to="{ name: 'dashboard' }" start>Home</gov-button> | ||
|
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 |
---|---|---|
|
@@ -262,7 +262,7 @@ export default { | |
}, | ||
videoEmbedHelpHref() { | ||
const to = "[email protected]"; | ||
const to = this.contactEmail; | ||
const subject = `Make a video for my ${this.service.type}`; | ||
const body = `My ${this.service.type} is: xxx\n\nI am interested in making a video for my ${this.service.type} page on Hounslow Connect.`; | ||
|
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 |
---|---|---|
|
@@ -28,11 +28,11 @@ | |
</li> | ||
<li>You can return to edit this {{ form.type }} at any time.</li> | ||
<li> | ||
If you would like your service to accept referrals through One | ||
If you would like your service to accept referrals through | ||
Hounslow Connect, please contact the team at | ||
<gov-link href="mailto:[email protected]" | ||
>[email protected]</gov-link | ||
> | ||
<gov-link :href="`mailto:${contactEmail}`"> | ||
{{ contactEmail }} | ||
</gov-link> | ||
</li> | ||
</gov-list> | ||
|
||
|
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 |
---|---|---|
|
@@ -148,8 +148,8 @@ | |
<gov-grid-column width="one-half"> | ||
<gov-body> | ||
Please provide your {{ type }}’s public-facing contact details. These | ||
will be displayed on your {{ type }}’s page on the One Hounslow | ||
Connect website. | ||
will be displayed on your {{ type }}’s page on the Hounslow Connect | ||
website. | ||
</gov-body> | ||
|
||
<gov-section-break size="l" /> | ||
|
@@ -271,7 +271,7 @@ export default { | |
]; | ||
}, | ||
videoEmbedHelpHref() { | ||
const to = "[email protected]"; | ||
const to = this.contactEmail; | ||
const subject = `Make a video for my ${this.type}`; | ||
const body = `My ${this.type} is: xxx\n\nI am interested in making a video for my ${this.type} page on Hounslow Connect.`; | ||
|
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 |
---|---|---|
|
@@ -205,7 +205,7 @@ export default { | |
}, | ||
computed: { | ||
logoHelpHref() { | ||
const to = "[email protected]"; | ||
const to = this.contactEmail; | ||
const subject = "Help uploading service logo"; | ||
return `mailto:${to}?subject=${encodeURIComponent(subject)}`; | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<gov-grid-row> | ||
<gov-grid-column width="one-half"> | ||
<gov-body> | ||
Your {{ type }} can be set up to accept referrals through One Hounslow | ||
Your {{ type }} can be set up to accept referrals through Hounslow | ||
Connect. These referrals directly connect your {{ type }} to | ||
residents. | ||
</gov-body> | ||
|
@@ -174,7 +174,7 @@ export default { | |
return this.referral_method !== null && this.referral_method !== "none"; | ||
}, | ||
contactAdminTeamEmail() { | ||
const to = "[email protected]"; | ||
const to = this.contactEmail; | ||
const subject = `Turn referrals on for my ${this.type}`; | ||
const body = `${this.$options.filters.ucfirst( | ||
this.type | ||
|
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 |
---|---|---|
|
@@ -59,7 +59,7 @@ export default { | |
}, | ||
computed: { | ||
contactAdminTeamEmail() { | ||
const to = "[email protected]"; | ||
const to = this.contactEmail; | ||
const subject = `Incorrect taxonomies applied to ${this.type}`; | ||
const body = `${this.$options.filters.ucfirst( | ||
this.type | ||
|
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