about summary refs log tree commit diff stats
path: root/apworld/tracker.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-23 11:49:35 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-23 11:49:35 -0400
commit558fabd029f52dafdf04c6de29ef09d7789ef27b (patch)
treef9f412986989410f111ee4b9cc3eba708cf0a302 /apworld/tracker.py
parentb78c93122f856940f7492e3dbc7dc5fbb798e14b (diff)
downloadlingo2-archipelago-558fabd029f52dafdf04c6de29ef09d7789ef27b.tar.gz
lingo2-archipelago-558fabd029f52dafdf04c6de29ef09d7789ef27b.tar.bz2
lingo2-archipelago-558fabd029f52dafdf04c6de29ef09d7789ef27b.zip
[Client] Stop using a camera for minimap
Diffstat (limited to 'apworld/tracker.py')
0 files changed, 0 insertions, 0 deletions
> 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