discourse/app/models/post_stat.rb
Sam 7b8b96446e FEATURE: track statistics around post creation
- how long were people typing?
- how long was composer open?
- how many drafts were created?
- correct, draft saved to go away after you continue typing

store in Post.find(xyz).post_stat
2015-08-03 14:29:15 +10:00

4 lines
59 B
Ruby

class PostStat < ActiveRecord::Base
belongs_to :post
end