1
0
Fork 0
arangodb/Documentation/DocuBlocks/JSF_foxx_RequestContext_not...

730 B

//////////////////////////////////////////////////////////////////////////////// /// @startDocuBlock JSF_foxx_RequestContext_notes /// /// Route.notes(...description) /// /// Set the long description for this route in the documentation // /// Examples /// /// Version with comment: /// /// js /// /** Short description /// * /// * Longer description /// * with multiple lines /// */ /// app.get("/foxx", function() { /// }); /// /// /// is identical to: /// /// js /// app.get("/foxx", function() { /// }) /// .summary("Short description") /// .notes(["Longer description", "with multiple lines"]); /// /// /// @endDocuBlock ////////////////////////////////////////////////////////////////////////////////