-
-
Save labria/6491796 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| def activity_status | |
| if last_activity_time < Time.now-CURRENTLY_WORKING_DELAY.hour | |
| 'working' | |
| elsif last_activity_time > Time.now-INACTIVE_DELAY.hours | |
| 'active' | |
| elsif has_activity? | |
| 'inactive' | |
| elsif signed_in_at_least_once? | |
| 'no_activity' | |
| else | |
| 'never_sign_in' | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment