Skip to content

Commit 5c1a7bc

Browse files
committed
Added cheeky line back to default route.
Was used in a raywenderlich.com tutorial and Héctor mentioned that it may confuse people if it's not there.
1 parent 66566fe commit 5c1a7bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ app.use(mountPath, api);
3636

3737
// Parse Server plays nicely with the rest of your web routes
3838
app.get('/', function(req, res) {
39-
res.status(200).send('Make sure to star the parse-server repo on GitHub!');
39+
res.status(200).send('I dream of being a website. Please star the parse-server repo on GitHub!');
4040
});
4141

4242
// There will be a test page available on the /test path of your server url

0 commit comments

Comments
 (0)