-
-
Save hoguej/1256996 to your computer and use it in GitHub Desktop.
For Jon Hogue
This file contains 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
class User | |
include ReUser | |
roles do | |
role :god, :actions => [ :manage_all, :new_user_session, :destroy_user_session ] | |
role :registrant, :read_event | |
role :observer, :read_event | |
role :admin, :manage_event | |
mail_actions = [ :show_user, :read_todo, :box_mail, :show_mail ] | |
role :teacher, mail_actions | |
role :student, mail_actions | |
end | |
def initialize(role) | |
@role = role | |
end | |
# More User stuff | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment