1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/interactors/confirm_passport.rb

28 lines
578 B
Ruby

# frozen_string_literal: true
class ConfirmPassport
include Interactor
def call
create_passport_confirmation
confirm_passport
end
private
def create_passport_confirmation
passport_confirmation =
context.passport.passport_confirmations.build account: context.account
context.fail! passport_confirmation: nil unless passport_confirmation.save
context.passport_confirmation = passport_confirmation
end
def confirm_passport
return unless context.passport.enough_confirmations?
context.passport.update! confirmed: true
end
end