9 lines
187 B
Ruby
9 lines
187 B
Ruby
module Suppliers
|
|
class SvgElementsController < Suppliers::ApplicationController
|
|
def index
|
|
@svg_elements = SvgElement.active
|
|
render json: @svg_elements
|
|
end
|
|
end
|
|
end
|