Quellcode durchsuchen

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.
Fosco Marotto vor 9 Jahren
Ursprung
Commit
5c1a7bca62
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      index.js

+ 1 - 1
index.js

@@ -36,7 +36,7 @@ app.use(mountPath, api);
 
 // Parse Server plays nicely with the rest of your web routes
 app.get('/', function(req, res) {
-  res.status(200).send('Make sure to star the parse-server repo on GitHub!');
+  res.status(200).send('I dream of being a website.  Please star the parse-server repo on GitHub!');
 });
 
 // There will be a test page available on the /test path of your server url