orientechnologies / orientdb-docs

Repository of the entire OrientDB documentation.
Apache License 2.0
58 stars 167 forks source link

The Hello World example should be corrected #378

Closed qualitesys closed 3 years ago

qualitesys commented 3 years ago

On this page https://orientdb.com/docs/2.2.x/Extend-Server.html, the example is wrong.

@Override public String[] getNames() { return new String[]{"GET|hello/* POST|hello/*"}; }

should be changed to

@Override public String[] getNames() { return new String[]{"GET|hello/*","POST|hello/*"}; }

Thanks

lvca commented 3 years ago

Thanks for the report, fixed. Changes should be online in 5 minutes.