Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Voting
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dennis Willers
Voting
Commits
6e90d3f0
Commit
6e90d3f0
authored
Aug 23, 2021
by
Matthieu - Greep
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Missing vote if vote is 0
parent
532a5ce1
Pipeline
#467
passed with stage
in 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
setVote.js
route/setVote.js
+3
-2
No files found.
route/setVote.js
View file @
6e90d3f0
...
...
@@ -10,11 +10,12 @@ const path = require('path'),
module
.
exports
=
function
(
app
,
sql
,
errorHandler
)
{
app
.
post
(
'
/
'
+
scriptName
,
function
(
req
,
res
)
{
const
mapId
=
req
.
query
.
map
||
req
.
body
.
map
,
player
=
req
.
query
.
player
||
req
.
body
.
player
,
vote
=
Number
(
req
.
query
.
vote
||
req
.
body
.
vote
)
;
player
=
req
.
query
.
player
||
req
.
body
.
player
;
let
vote
=
req
.
query
.
vote
||
req
.
body
.
vote
;
if
(
!
mapId
)
return
errorHandler
(
res
,
400
,
'
Missing map id
'
);
if
(
!
player
)
return
errorHandler
(
res
,
400
,
'
Missing player login
'
);
if
(
!
vote
)
return
errorHandler
(
res
,
400
,
'
Missing vote
'
);
vote
=
Number
(
vote
);
if
(
isNaN
(
vote
))
return
errorHandler
(
res
,
400
,
'
Invalid vote
'
);
if
(
vote
<
0
||
vote
>
100
)
return
errorHandler
(
res
,
400
,
'
Vote must be between 0 and 100
'
);
...
...
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