9 lines
263 B
Ruby
9 lines
263 B
Ruby
module Suppliers
|
|
class SvgElementsController < Suppliers::ApplicationController
|
|
def index
|
|
@svg_elements = SvgElement.active
|
|
render json: JSONAPI::Serializer.serialize(@svg_elements, serializer: Suppliers::SvgElementSerializer)
|
|
end
|
|
end
|
|
end
|