- Controllers that have adapters are AdaptableControllers - AdaptableController is responsible to instantiate the proper adapter if needed (string, function or BaseAdapter) - BaseAdapter is the base class for adapters, allows skipping when passed directly to the controller
4 lines
65 B
JavaScript
4 lines
65 B
JavaScript
module.exports = function(options) {
|
|
this.options = options;
|
|
}
|