about summary refs log tree commit diff stats
path: root/Archipelago/vendor/LICENSE
diff options
context:
space:
mode:
Diffstat (limited to 'Archipelago/vendor/LICENSE')
0 files changed, 0 insertions, 0 deletions
9823'>8e15dbd ^
b7c5853 ^

8e15dbd ^


42d9db5 ^
b7c5853 ^



42d9db5 ^


b7c5853 ^




8e15dbd ^
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