Skip to content

Instantly share code, notes, and snippets.

@Keqi
Created January 9, 2020 17:17
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 Keqi/bec7ae2b07254e02a468826818d3ceea to your computer and use it in GitHub Desktop.
Save Keqi/bec7ae2b07254e02a468826818d3ceea to your computer and use it in GitHub Desktop.
class User
def admin?
role == 'admin'
end
def marketer?
role == 'marketer'
end
def sales?
role == 'sales'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment