about summary refs log tree commit diff stats
path: root/data/maps/the_entry/rooms/Shop Entrance.txtpb
Commit message (Expand)AuthorAgeFilesLines
* Changed how door location names are formattedStar Rauchenberger2025-08-301-1/+1
* Converted puzzle symbols to an enumStar Rauchenberger2025-08-201-1/+1
* Trying out protobuf I guessStar Rauchenberger2025-08-071-0/+14
18-07-07 16:23:04 -0400 committer Kelly Rauchenberger <fefferburbia@gmail.com> 2018-07-07 16:23:04 -0400 Added tags' href='/thoughts/commit/app/models/update.rb?id=42d9db526d3aef2e08848d6bc587feaf3700db42'>42d9db5 ^
8e15dbd ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                                

                    



                                          


                                          



              
   
class Update < ApplicationRecord
  include Recordable

  belongs_to :stream

  validates :stream, :body, presence: true

  def path
    "/thinks/#{stream.slug}\#update-#{id}"
  end

  def taggable
    stream
  end
end