This website works better with JavaScript.
Home
Explore
Help
Sign In
brettlangdon
/
node-dogapi
mirror of
https://github.com/brettlangdon/node-dogapi.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
40
Wiki
Activity
Browse Source
Merge pull request
#57
from haohcraft/master
change http-method GET to POST on api.Screenboard#share
develop
Brett Langdon
7 years ago
committed by
GitHub
parent
b226af3e9f
73ef182cda
commit
1fdcb13158
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
lib/api/screenboard.js
+ 1
- 1
lib/api/screenboard.js
View File
@ -259,7 +259,7 @@ function getAll(callback){
*
`
`
`
*
/
function
share
(
boardId
,
callback
)
{
client
.
request
(
"
GE
T"
,
util
.
format
(
"/screen/share/%s"
,
boardId
)
,
callback
)
;
client
.
request
(
"
POS
T"
,
util
.
format
(
"/screen/share/%s"
,
boardId
)
,
callback
)
;
}
Write
Preview
Loading…
Cancel
Save