FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
parse-server/push.js at testing · mabowgithub/parse-server · GitHub
mabowgithub
/
parse-server
Public
forked from
parse-community/parse-server
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
parse-server
/
push.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (11 loc) · 399 Bytes
Breadcrumbs
parse-server
/
push.js
Copy path
File metadata and controls
18 lines (11 loc) · 399 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// push.js
var
Parse
=
require
(
'parse/node'
)
.
Parse
,
PromiseRouter
=
require
(
'./PromiseRouter'
)
,
rest
=
require
(
'./rest'
)
;
var
router
=
new
PromiseRouter
(
)
;
function
notImplementedYet
(
req
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
COMMAND_UNAVAILABLE
,
'This path is not implemented yet.'
)
;
}
router
.
route
(
'POST'
,
'/push'
,
notImplementedYet
)
;
module
.
exports
=
router
;
Back
|
FazBrowse Home
|
New Git URL