-
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.
Ft schedule technical interview (#169)
* Application cycle process on applicant * implement Technical Interview invitation * implement Technical Interview invitation * Implement Interview inviation * Pipeline envs (#163) * fix: remove the rm step * test: run on PR * test: test pusher cluster env * fix: add notification envs * test: add pusher key * fix: add the pusher app key * fix: log container start output * fix: remove the e flag * fix: revert changes * fix: re-add the pusher app key * fix: add pusher app key value * fix: typo * fix: test env file * fix: syntax * fix: remove the env from run cmd * fix: revert changes * fix: revert changes * fix: wrap run cmd in an if statement * Revert "test: test pusher cluster env" This reverts commit 57b2bbe. * test: create env file * test: add error handling * fix: run on push (#176) * fix(apply-jobpost): incorporate feedback (#168) - remove 'submitted' status - add comments for 'rejected status' * fix: don't exit on cmd failure (#177) * fix: don't exit on cmd failure * fix: re-add values * fix: add new variables * test: add container name * fix: match ports * fix: add devpulse email * fix: port * fix: port * fix: remove container name * fix: remove extraneous node env * fix: add jwt key * fix: run on push * #170 An author will be able to update a blog (#171) * fix (170): an author will be able to update a blog * fix (170): allow all users to create and update blogs * Fix to change status in application stage process (#165) * Ft: Enhance Backend documentation (#164) * fix: improve on notifications (#175) * Application cycle process on applicant * Application cycle process on applicant * Fixing conflicts and removing unnecessary files --------- Co-authored-by: Aime-Patrick <[email protected]> Co-authored-by: Samuel Nishimwe <[email protected]> Co-authored-by: Joslyn Manzi Karenzi <[email protected]> Co-authored-by: mutsinziisaac <[email protected]> Co-authored-by: Emmanuel MUGISHA <[email protected]> Co-authored-by: ISHIMWE Jean Baptiste <[email protected]> Co-authored-by: Christian Iradukunda <[email protected]>
- Loading branch information
1 parent
3b0e5f4
commit eb83c2b
Showing
21 changed files
with
1,350 additions
and
340 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
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 |
---|---|---|
|
@@ -111,13 +111,12 @@ export const sendUserCredentials = async (email: String, password: String) => { | |
} | ||
}; | ||
|
||
|
||
export const sendEmailTemplate = async ( | ||
email: string, | ||
subject: string, | ||
title: string, | ||
body: string, | ||
button?: { url: string, text: string } | ||
button?: { url: string; text: string } | ||
) => { | ||
try { | ||
const logoText = "DevPulse"; | ||
|
@@ -171,7 +170,7 @@ export const sendEmailTemplate = async ( | |
<div style="margin-top: 80px;"> | ||
<p style="color: #555; font-size: 14px;"> | ||
If you received this email by mistake, simply ignore it. <br /> | ||
For any questions, contact us at <a href="mailto: samuel.nishimwe@andela.com" style="color: ${secondaryColor};">[email protected]</a>. | ||
For any questions, contact us at <a href="mailto: devpulsedev@gmail.com" style="color: ${secondaryColor};">[email protected]</a>. | ||
</p> | ||
<a href="" style="margin: 0 10px; display: inline-flex; align-items: center; text-decoration: none;"> | ||
<img | ||
|
@@ -252,7 +251,7 @@ export const sendEmailTemplate = async ( | |
${generateLogo(logoText, mainColor)} | ||
${generateTitle(title)} | ||
${generateBody(body)} | ||
${button ? generateButton(button.url, button.text) : ''} | ||
${button ? generateButton(button.url, button.text) : ""} | ||
${generateFooterLogo()} | ||
${generateSocialIcons()} | ||
${generateFooter()} | ||
|
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
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
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
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
Oops, something went wrong.