about summary refs log tree commit diff stats
path: root/app/models/stream.rb
blob: 6a738e240e4bf7ed9464315188c28f7ebfbcc590 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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/

  before_create :set_post_timestamp

  def path
    "/thinks/#{slug}"
  end

  def to_param
    slug
  end

  def taggable
    self
  end

  private
    def set_post_timestamp
      self.latest_post_at = self.created_at
    end
end