-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(front-end): add csrf request to all request (#137)
* fix(server-response): a quick update of server response and fix adminjs problems * chore: update auth.service.ts * update 8 files * chore: update 3 files and delete 1 file * chore: update 16 files and delete 1 file * update server.utils.ts and schema.gql * update server.utils.ts * Merge branch 'master' into quick-patch * Update branch (#134) * update package.json, pnpm-lock.yaml and schema.gql * Merge remote-tracking branch 'origin/master' into quick-patch * Apply automatic changes * update app.middleware.ts and schema.gql * Merge branch 'quick-patch' of https://github.com/524H0003/Project_W into quick-patch
- Loading branch information
1 parent
17259f3
commit e1c9def
Showing
20 changed files
with
326 additions
and
301 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,14 @@ | ||
import ms from 'smtp-tester'; | ||
|
||
module.exports = (on, config) => { | ||
// starts the SMTP server at localhost:7777 | ||
const port = 7777; | ||
const mailServer = ms.init(port); | ||
console.log('mail server at port %d', port); | ||
|
||
// process all emails | ||
mailServer.bind((addr, id, email) => { | ||
console.log('--- email ---'); | ||
console.log(addr, id, email); | ||
}); | ||
}; |
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 was deleted.
Oops, something went wrong.
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.