add api registration to plugin

This commit is contained in:
Iuri Matias 2018-03-13 06:23:12 -04:00
parent f0645ba48e
commit fc5d942439

View File

@ -34,6 +34,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;
@ -214,6 +215,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;