This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/app/models/feed.rb

9 lines
165 B
Ruby

class Feed < ActiveRecord::Base
has_many :items
validates_uniqueness_of :url
validates_presence_of :title
scope :recent, order(:published, :asc).limit(10)
end