# frozen_string_literal: true class PassportConfirmationPolicy < ApplicationPolicy def create? return false if record.passport.nil? return false if record.account != account policy(record.passport).show? end end