Sha256: 62081c3e43007cc4b682c87c3f7345e2bce76a8fce66bbe45190e786231c3e92
Contents?: true
Size: 996 Bytes
Versions: 14
Compression:
Stored size: 996 Bytes
Contents
# frozen_string_literal: true module Decidim # ImpersonationLogs are created whenever an admin impersonate a managed user class ImpersonationLog < ApplicationRecord SESSION_TIME_IN_MINUTES = 30 belongs_to :admin, foreign_key: "decidim_admin_id", class_name: "Decidim::User" belongs_to :user, foreign_key: "decidim_user_id", class_name: "Decidim::User" validate :same_organization, :non_active_impersonation scope :active, -> { where(ended_at: nil, expired_at: nil) } scope :expired, -> { where(ended_at: nil).where.not(expired_at: nil) } def ended? ended_at.present? end def expired? expired_at.present? end private def same_organization return if admin&.organization == user&.organization errors.add(:admin, :invalid) end def non_active_impersonation return if ended? || expired? errors.add(:admin, :invalid) if Decidim::ImpersonationLog.where(admin: admin).active.any? end end end
Version data entries
14 entries across 14 versions & 1 rubygems