From 3fcd5edd41bbd696ddc38e2f745ebca90c09e685 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Thu, 14 May 2020 14:37:07 -0700 Subject: [PATCH] Make the Plugin adapter extend Watchable --- ui/app/adapters/plugin.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ui/app/adapters/plugin.js diff --git a/ui/app/adapters/plugin.js b/ui/app/adapters/plugin.js new file mode 100644 index 000000000..c89779543 --- /dev/null +++ b/ui/app/adapters/plugin.js @@ -0,0 +1,7 @@ +import Watchable from './watchable'; + +export default Watchable.extend({ + queryParamsToAttrs: { + type: 'type', + }, +});