diff --git a/app/assets/javascripts/discourse/adapters/build-plugin.js.es6 b/app/assets/javascripts/discourse/adapters/build-plugin.js.es6
index 218a8d8d8..b73bf7ecb 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);
     }
   });
 }