data_importer/app/controllers/cpes_controller.rb

12 lines
199 B
Ruby
Raw Normal View History

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