mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:01:52 +08:00
9 lines
247 B
Ruby
9 lines
247 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
|