about summary refs log tree commit diff stats
path: root/app/models/stream.rb
blob: 07731437b9896e5405d5ba2bab1489a4523c94e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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