Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
proddy committed Jun 24, 2023
1 parent 5fddb08 commit 89f14f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mock-api/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -2113,8 +2113,9 @@ rest_server.get(FEATURES_ENDPOINT, (req, res) => {
rest_server.get(VERIFY_AUTHORIZATION_ENDPOINT, (req, res) => {
res.json(verify_authentication);
});
rest_server.post(RESTART_ENDPOINT, (req, res) => {
rest_server.post(RESTART_ENDPOINT, async (req, res) => {
console.log('command: restart');
// await delay(1000);
res.sendStatus(200);
});
rest_server.post(FACTORY_RESET_ENDPOINT, (req, res) => {
Expand Down

0 comments on commit 89f14f1

Please sign in to comment.