Last active
May 19, 2017 13:56
-
-
Save damuz91/b796a82517b946b9eaf95ad5985ed32b 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
# From | |
User::ACTIVE # => 1 | |
User::INACTIVE # => 0 | |
User::SUSPENDED # => 2 | |
# To | |
User::Statuses[:active] # => 1 | |
User::Statuses[:inactive] # => 0 | |
User::Statuses[:suspended] # => 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment