Skip to content

Instantly share code, notes, and snippets.

@jancel
Created January 14, 2011 23:05
Show Gist options
  • Save jancel/780454 to your computer and use it in GitHub Desktop.
Save jancel/780454 to your computer and use it in GitHub Desktop.
#application controller
around_filter :update_user_seen_on
def update_user_seen_on
yield
if signed_in?
current_user.last_seen_on = DateTime.now
current_user.save
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment