Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
simcaq-node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simcaq
simcaq-node
Commits
7faf3b9f
"src/libs/routes/spatial.js" did not exist on "d5aa93b74b0ba342f2c11aaefecb0d7d56d434f9"
Commit
7faf3b9f
authored
2 years ago
by
SimCAQ-Homologa
Browse files
Options
Downloads
Patches
Plain Diff
add message route
parent
b136374e
No related branches found
No related tags found
2 merge requests
!309
Merge new updates into master
,
!283
Homologa
Pipeline
#28698
failed
2 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/libs/routes/message.js
+9
-5
9 additions, 5 deletions
src/libs/routes/message.js
with
9 additions
and
5 deletions
src/libs/routes/message.js
+
9
−
5
View file @
7faf3b9f
...
...
@@ -26,19 +26,22 @@ const email = require(`../middlewares/email`);
const
log
=
require
(
`../log`
)(
module
);
messageApp
.
get
(
'
/
'
,
(
req
,
res
,
next
)
=>
{
res
.
json
({
msg
:
'
This is the message route
'
});
})
messageApp
.
post
(
'
/
'
,
(
req
,
res
,
next
)
=>
{
var
reqName
=
req
.
body
.
name
var
reqEmail
=
req
.
body
.
email
var
reqContents
=
req
.
body
.
contents
var
reqOrigin
=
req
.
body
.
origin
?
req
.
body
.
origin
:
""
;
var
sub
=
"
Contato
"
+
reqOrigin
let
mailOptions
=
{
from
:
`"
${
reqName
}
<
${
reqEmail
}
>"`
,
text
:
reqContents
from
:
`\"
${
reqName
}
\" <
${
reqEmail
}
>`
,
text
:
reqContents
,
subject
:
sub
}
console
.
log
(
"
reqbody
"
,
req
.
body
)
console
.
log
(
"
mail options
"
,
mailOptions
)
email
(
mailOptions
,
(
err
,
info
)
=>
{
if
(
err
)
{
log
.
error
(
err
);
...
...
@@ -52,3 +55,4 @@ messageApp.post('/', (req, res, next) => {
})
module
.
exports
=
messageApp
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment