add api registration to plugin
This commit is contained in:
parent
c4c21d041d
commit
f22b32b463
|
@ -35,6 +35,7 @@ var Plugin = function(options) {
|
|||
this.logger = this._loggerObject; // Might get changed if we do intercept
|
||||
this.events = options.events;
|
||||
this.config = options.config;
|
||||
this.plugins = options.plugins;
|
||||
this.env = options.env;
|
||||
this.loaded = false;
|
||||
this.currentContext = options.context;
|
||||
|
@ -225,6 +226,11 @@ Plugin.prototype.registerAPICall = function(method, endpoint, cb) {
|
|||
this.pluginTypes.push('apiCalls');
|
||||
};
|
||||
|
||||
Plugin.prototype.registerAPICall = function(method, endpoint, cb) {
|
||||
this.apiCalls.push({method: method, endpoint: endpoint, cb: cb});
|
||||
this.pluginTypes.push('apiCalls');
|
||||
};
|
||||
|
||||
Plugin.prototype.runFilePipeline = function() {
|
||||
var self = this;
|
||||
|
||||
|
|
Loading…
Reference in New Issue