Last active
November 13, 2019 20:19
-
-
Save shawndeprey/e1f9c39aed8f036c78962e108b0b7b34 to your computer and use it in GitHub Desktop.
User code snippit for SPA article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ApplicationRecord | |
def set_timeout! | |
self.timeout = 15.minutes.from_now | |
self.save | |
end | |
def should_session_remain_active? | |
return false if timeout.blank? | |
timeout.future? | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment