aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/taxonomies/filter_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/taxonomies/filter_controller.rb')
-rw-r--r--app/controllers/taxonomies/filter_controller.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/taxonomies/filter_controller.rb b/app/controllers/taxonomies/filter_controller.rb
new file mode 100644
index 0000000..ad3514c
--- /dev/null
+++ b/app/controllers/taxonomies/filter_controller.rb
@@ -0,0 +1,7 @@
+class Taxonomies::FilterController < ApplicationController
+ # GET /taxonomies/:id/filter
+ def show
+ @taxonomy = Taxonomy.find_by(uuid: params[:id])
+ render partial: "taxonomies/filter/taxonomy"
+ end
+end