Sha256: 233be477d0d0bc43c91d674929a45aface8e4b98addacbf8c605e12150e82aa8
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
# frozen_string_literal: true module Spotlight ## # Exhibit authorization roles class Role < ActiveRecord::Base ROLES = %w(admin curator).freeze belongs_to :resource, polymorphic: true, optional: true belongs_to :user, class_name: Spotlight::Engine.config.user_class, autosave: true, optional: false validates :role, inclusion: { in: ROLES } validate :user_must_be_unique, if: :user def user_key if user @user_key = user.user_key else @user_key end end # setting user key causes the user to get set def user_key=(key) @user_key = key self.user ||= Spotlight::Engine.user_class.find_by_user_key(key) self.user ||= Spotlight::Engine.user_class.invite!(email: user_key, skip_invitation: true) user.user_key = key end protected # This is just like # validates :user, uniqueness: { scope: :exhibit} # but it puts the error message on the user_key instead of user so that the form will render correctly def user_must_be_unique errors.add(:user_key, 'already a member of this exhibit') if Spotlight::Role.where(resource: resource, user: user).where.not(id: id).any? end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
blacklight-spotlight-3.0.0.alpha.2 | app/models/spotlight/role.rb |
blacklight-spotlight-3.0.0.alpha.1 | app/models/spotlight/role.rb |