about summary refs log blame commit diff stats
path: root/app/models/stream.rb
blob: 07731437b9896e5405d5ba2bab1489a4523c94e9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                
                    
                  



                                                           

                     


              
   
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