Remove `app.docs()`
The swagger integration was moved to loopback-explorer.
This commit is contained in:
parent
74e9ff75e3
commit
c7bca9da78
|
@ -9,7 +9,6 @@ var DataSource = require('loopback-datasource-juggler').DataSource
|
||||||
, extend = require('util')._extend
|
, extend = require('util')._extend
|
||||||
, _ = require('underscore')
|
, _ = require('underscore')
|
||||||
, RemoteObjects = require('strong-remoting')
|
, RemoteObjects = require('strong-remoting')
|
||||||
, swagger = require('strong-remoting/ext/swagger')
|
|
||||||
, stringUtils = require('underscore.string')
|
, stringUtils = require('underscore.string')
|
||||||
, path = require('path');
|
, path = require('path');
|
||||||
|
|
||||||
|
@ -266,34 +265,6 @@ app.remoteObjects = function () {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Enable swagger REST API documentation.
|
|
||||||
*
|
|
||||||
* **Note**: This method is deprecated. Use [loopback-explorer](http://npmjs.org/package/loopback-explorer) instead.
|
|
||||||
*
|
|
||||||
* **Options**
|
|
||||||
*
|
|
||||||
* - `basePath` The basepath for your API - eg. 'http://localhost:3000'.
|
|
||||||
*
|
|
||||||
* **Example**
|
|
||||||
*
|
|
||||||
* ```js
|
|
||||||
* // enable docs
|
|
||||||
* app.docs({basePath: 'http://localhost:3000'});
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* Run your app then navigate to
|
|
||||||
* [the API explorer](http://petstore.swagger.wordnik.com/).
|
|
||||||
* Enter your API basepath to view your generated docs.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
|
|
||||||
app.docs = function (options) {
|
|
||||||
var remotes = this.remotes();
|
|
||||||
swagger(remotes, options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Get a handler of the specified type from the handler cache.
|
* Get a handler of the specified type from the handler cache.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue