taskbar.rb 200 B

1234567891011
  1. class Taskbar < ApplicationModel
  2. store :state, :params
  3. before_create :update_time
  4. before_update :update_time
  5. private
  6. def update_last_contact
  7. self.last_contact = Time.now
  8. end
  9. end