trabajo-afectivo/app/models/taskbar.rb

12 lines
222 B
Ruby
Raw Normal View History

2013-05-29 15:11:11 +00:00
class Taskbar < ApplicationModel
2013-05-30 08:24:09 +00:00
store :state
store :params
before_create :update_last_contact
before_update :update_last_contact
2013-05-29 15:11:11 +00:00
private
def update_last_contact
self.last_contact = Time.now
end
end