data_importer/app/models/github_poc.rb

6 lines
126 B
Ruby
Raw Normal View History

class GithubPoc < ActiveRecord::Base
def self.from_year(year)
where("cve_id LIKE ?", "CVE-#{year}-%")
end
end