Mercurial > zeropaste
view app/models/paste.rb @ 12:f3adcff48173
Whoops, forgot to hide the ip etc in json. Removed for now.
| author | Edho Arief <edho@myconan.net> | 
|---|---|
| date | Sun, 26 Aug 2012 12:04:48 -0700 | 
| parents | 42de15334db1 | 
| children | 032686a0c995 | 
line wrap: on
 line source
class Paste < ActiveRecord::Base attr_accessible :paste before_validation :set_paste_hash validates :paste, :paste_hash, :ip, :presence => true validates :paste, :length => { :maximum => 1_000_000 } def set_paste_hash self.paste_hash = Digest::SHA512.hexdigest(paste) end end
