data_importer/app/controllers/cisa_known_exploits_controller.rb

14 lines
335 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CisaKnownExploitsController < ApplicationController
def index
@cisa_known_exploits = CisaKnownExploit.all
render json: @cisa_known_exploits.to_json
end
def show
2022-04-27 01:11:36 -05:00
@cisa_known_exploit = CisaKnownExploit.cve_id(params[:cve_id])
render json: @cisa_known_exploit.to_json
end
end