Skip to content

Commit

Permalink
[imad-console] Updates server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
abhayana24 committed Sep 17, 2016
1 parent 0ff0425 commit 6782ebc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ app.get('/article-one', function(req, res){
});

app.get('/article-two', function(req, res){
res.send('Article Two requested and will be served here');
res.sendFile(path.join(__dirname, 'ui', 'article-two.html'));
});

app.get('/article-three', function(req, res){
res.send('Article three requested and will be served here');
res.sendFile(path.join(__dirname, 'ui', 'article-three.html'));
});

app.get('/ui/style.css', function (req, res) {
Expand Down

0 comments on commit 6782ebc

Please sign in to comment.