9 lines
234 B
Ruby
9 lines
234 B
Ruby
module Suppliers
|
|
class SvgElementsController < Suppliers::ApplicationController
|
|
def index
|
|
@svg_elements = SvgElement.all
|
|
render json: @svg_elements, each_serializer: Suppliers::SvgElementSerializer
|
|
end
|
|
end
|
|
end
|