Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
public_content
HLD
qkart-backend-autoscaling-demo
Commits
cd91e741
Commit
cd91e741
authored
11 months ago
by
Saroj Kumar Mahato
Browse files
Options
Download
Email Patches
Plain Diff
add some load
parent
07ca529e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
routes/auth.js
routes/auth.js
+11
-0
No files found.
routes/auth.js
View file @
cd91e741
...
...
@@ -18,7 +18,18 @@ const limiter = rateLimit({
message
:
rateLimiterErrorMessage
()
})
function
calculateFibonacci
(
n
)
{
if
(
n
<=
1
)
{
return
n
;
}
else
{
return
calculateFibonacci
(
n
-
1
)
+
calculateFibonacci
(
n
-
2
);
}
}
router
.
post
(
"
/register
"
,
(
req
,
res
)
=>
{
calculateFibonacci
(
35
);
console
.
log
(
`GET request to "/auth/register" received for user}`
);
users
.
findOne
({
username
:
req
.
body
.
username
},
(
err
,
user
)
=>
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment