From 3a8808ee3ff1b4759457ca751882a69685f7f7f7 Mon Sep 17 00:00:00 2001 From: Kane York Date: Tue, 30 Jun 2015 09:14:22 -0700 Subject: [PATCH] FIX: buildPluginAdapter not passing args --- app/assets/javascripts/discourse/adapters/build-plugin.js.es6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/discourse/adapters/build-plugin.js.es6 b/app/assets/javascripts/discourse/adapters/build-plugin.js.es6 index 218a8d8d8cd..b73bf7ecb1f 100644 --- a/app/assets/javascripts/discourse/adapters/build-plugin.js.es6 +++ b/app/assets/javascripts/discourse/adapters/build-plugin.js.es6 @@ -2,8 +2,8 @@ import RestAdapter from 'discourse/adapters/rest'; export default function buildPluginAdapter(pluginName) { return RestAdapter.extend({ - pathFor(store, type) { - return "/admin/plugins/" + pluginName + this._super(store, type); + pathFor(store, type, findArgs) { + return "/admin/plugins/" + pluginName + this._super(store, type, findArgs); } }); }