Skip to content

Instantly share code, notes, and snippets.

@Keqi
Created January 13, 2020 08:00
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/6b0809bb619b97ac33fcb9b877ec9956 to your computer and use it in GitHub Desktop.
Save Keqi/6b0809bb619b97ac33fcb9b877ec9956 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