trabajo-afectivo/app/models/taskbar.rb

12 lines
246 B
Ruby
Raw Normal View History

2013-05-29 15:11:11 +00:00
class Taskbar < ApplicationModel
2013-05-31 23:10:40 +00:00
store :state
store :params
before_create :update_last_contact
before_update :update_last_contact
2013-05-29 15:11:11 +00:00
2013-05-31 23:10:40 +00:00
private
2013-05-29 15:11:11 +00:00
def update_last_contact
self.last_contact = Time.now
end
2013-05-31 23:10:40 +00:00
end