data_importer/app/controllers/cpes_controller.rb

11 lines
168 B
Ruby
Raw Normal View History

2022-04-04 13:18:03 -05:00
class CpesController < ApplicationController
def index
@cpes = Cpe.all
end
def show
@cpe = Cpe.find(params[:id])
render json: @cpe.to_json
end
end