data_importer/app/controllers/inthewild_cve_exploits_controller.rb

11 lines
265 B
Ruby

class InthewildCveExploitsController < ApplicationController
def index
@cves = InthewildCveExploit.all
render json: @cves.to_json
end
def show
@cve = InthewildCveExploit.find_by(:cve_id => params[:cve_id])
render json: @cve.to_json
end
end