mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
10 lines
252 B
Ruby
10 lines
252 B
Ruby
class OneboxRender < ActiveRecord::Base
|
|
|
|
validates_presence_of :url
|
|
validates_presence_of :cooked
|
|
validates_presence_of :expires_at
|
|
|
|
has_many :post_onebox_renders, :dependent => :delete_all
|
|
has_many :posts, through: :post_onebox_renders
|
|
|
|
end
|