Class: Spotlight::Role

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/spotlight/role.rb

Overview

Exhibit authorization roles

Constant Summary collapse

ROLES =
%w(admin curator).freeze

Instance Method Summary collapse

Instance Method Details

#user_keyObject



13
14
15
16
17
18
19
# File 'app/models/spotlight/role.rb', line 13

def user_key
  if user
    @user_key = user.user_key
  else
    @user_key
  end
end

#user_key=(key) ⇒ Object

setting user key causes the user to get set



22
23
24
25
26
# File 'app/models/spotlight/role.rb', line 22

def user_key=(key)
  @user_key = key
  self.user ||= Spotlight::Engine.user_class.find_by_user_key(key)
  user.user_key = key if user
end