add api registration to plugin

This commit is contained in:
Iuri Matias 2018-03-13 06:23:12 -04:00 committed by Pascal Precht
parent bf4758494e
commit ad7b0fc74e
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 6 additions and 0 deletions

View File

@ -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;
@ -229,6 +230,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;