Files
mozo-backend/app/controllers/suppliers/svg_elements_controller.rb
T
2015-09-16 11:50:55 +02:00

9 lines
187 B
Ruby

module Suppliers
class SvgElementsController < Suppliers::ApplicationController
def index
@svg_elements = SvgElement.active
render json: @svg_elements
end
end
end