Procházet zdrojové kódy

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 před 9 roky
rodič
revize
5c1a7bca62
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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