Skip to content

Instantly share code, notes, and snippets.

@mleszcz
Last active May 16, 2018 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mleszcz/30746adcef3aea39504bb20bde4b88f7 to your computer and use it in GitHub Desktop.
Save mleszcz/30746adcef3aea39504bb20bde4b88f7 to your computer and use it in GitHub Desktop.
class User
def active?
if self.class == User
@settings[:status] == :active
elsif self.class == AdminUser
@settings[1] == :active
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment