Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
publics
service-sdk-releases
Commits
37604986
Commit
37604986
authored
May 10, 2017
by
Evgeniy Zaitsev
Browse files
v1.0.2
parent
241f4753
Changes
3
Hide whitespace changes
Inline
Side-by-side
package.json
View file @
37604986
{
"name"
:
"service-sdk"
,
"version"
:
"1.0.
1
"
,
"version"
:
"1.0.
2
"
,
"private"
:
true
,
"description"
:
"Service SDK for LViS"
,
"keywords"
:
[],
...
...
router/health.js
0 → 100644
View file @
37604986
'
use strict
'
;
function
*
get
()
{
this
.
body
=
'
Ok
'
;
}
module
.
exports
=
{
get
:
get
};
router/index.js
View file @
37604986
...
...
@@ -11,10 +11,12 @@ const tab = require('./tab');
const
lvis
=
require
(
'
./lvis
'
);
const
tabs
=
require
(
'
./tabs
'
);
const
assets
=
require
(
'
./assets
'
);
const
health
=
require
(
'
./health
'
);
const
project
=
require
(
'
./project
'
);
const
analytics
=
require
(
'
./analytics
'
);
router
.
post
(
'
/health
'
,
health
.
get
)
.
post
(
'
/lvis
'
,
checkSignature
,
lvis
.
post
)
.
post
(
'
/lvis/:instanceId/project
'
,
checkSignature
,
checkInstanceId
,
project
.
post
)
.
put
(
...
...
Write
Preview
Supports
Markdown
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