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
584b7a61
Commit
584b7a61
authored
Aug 20, 2021
by
Dennis Willers
🏀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Players can now Vote for a map
parent
d7b249f7
Pipeline
#422
passed with stages
in 2 minutes and 51 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
helpFunctions.js
helpFunctions.js
+2
-1
socket.js
socket.js
+2
-1
No files found.
helpFunctions.js
View file @
584b7a61
...
@@ -13,7 +13,8 @@ function isJsonString(str) {
...
@@ -13,7 +13,8 @@ function isJsonString(str) {
}
}
function
checkIfRequestHasVote
(
json
)
{
function
checkIfRequestHasVote
(
json
)
{
return
json
.
hasOwnProperty
(
'
vote
'
);
console
.
log
(
"
Has Vote:
"
+
JSON
.
parse
(
json
).
hasOwnProperty
(
'
vote
'
),
json
);
return
JSON
.
parse
(
json
).
hasOwnProperty
(
'
vote
'
);
}
}
function
sendRequest
(
url
,
json
,
callback
)
{
function
sendRequest
(
url
,
json
,
callback
)
{
...
...
socket.js
View file @
584b7a61
...
@@ -244,7 +244,8 @@ const testClient = net.connect({host: 'localhost', port: 3000}, () => {
...
@@ -244,7 +244,8 @@ const testClient = net.connect({host: 'localhost', port: 3000}, () => {
testClient
.
write
(
JSON
.
stringify
({
testClient
.
write
(
JSON
.
stringify
({
"
mapId
"
:
"
keineBekannteMap1
"
,
"
mapId
"
:
"
keineBekannteMap1
"
,
"
name
"
:
"
keinBekannterMapName1
"
,
"
name
"
:
"
keinBekannterMapName1
"
,
"
userId
"
:
"
keinBekannterUser1
"
"
userId
"
:
"
keinBekannterUser1
"
,
"
vote
"
:
80
}));
}));
//test(testClient);
//test(testClient);
});
});
...
...
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