blob: d366cae23c5722dc595af5dccc35de05c3f2de60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# SPDX-FileCopyrightText: 2021 IN COMMON Collective
#
# SPDX-License-Identifier: AGPL-3.0-or-later
class Taxonomies::FilterController < ApplicationController
# GET /taxonomies/:id/filter
def show
@taxonomy = Taxonomy.find_by(uuid: params[:id])
render partial: "taxonomies/filter/taxonomy"
end
end
|