class Current < ActiveSupport::CurrentAttributes attribute :session, :membership, :account attribute :http_method, :request_id, :user_agent, :ip_address, :referrer delegate :identity, to: :session, allow_nil: true delegate :user, to: :membership, allow_nil: true def session=(value) super(value) # # TODO:PLANB: not sure how to patch this up right now # unless value.nil? # self.membership = identity.memberships.find_by(tenant: ApplicationRecord.current_tenant) # end end end