blob: 07731437b9896e5405d5ba2bab1489a4523c94e9 (
plain) (
tree)
|
|
class Stream < ApplicationRecord
include Recordable
acts_as_taggable
has_many :updates
validates :title, presence: true
validates :slug, presence: true, format: /\A[-a-z0-9]+\z/
def path
"/thinks/#{slug}"
end
def taggable
self
end
end
|