From 4eda547734a2ea41425c4b364f837a35c6c7bb28 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Thu, 11 Jan 2018 14:22:45 -0700 Subject: [PATCH] removed config from context --- plugins.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins.js b/plugins.js index 0f0b4ab3d..1d46cea1c 100644 --- a/plugins.js +++ b/plugins.js @@ -5,7 +5,6 @@ const debug = require('debug')('talk:plugins'); const Joi = require('joi'); const amp = require('app-module-path'); const pkg = require('./package.json'); -const config = require('./config'); const PLUGINS_JSON = process.env.TALK_PLUGINS_JSON; @@ -71,7 +70,6 @@ const hookSchemas = { class PluginContext { constructor() { this.pkg = pkg; - this.config = config; } }