1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/controllers/passports/passport_confirmations_controller.rb
2018-12-03 22:12:47 +05:00

38 lines
946 B
Ruby

# frozen_string_literal: true
class Passports::PassportConfirmationsController < ApplicationController
before_action :authenticate_user!, only: :create
before_action :set_passport, only: %i[index create]
# GET /passports/:passport_id/passport_confirmations
def index
@passport_confirmations = policy_scope(@passport.passport_confirmations)
end
# POST /passports/:passport_id/passport_confirmations
def create
ActiveRecord::Base.transaction do
ConfirmPassport.call(passport: @passport,
account: current_account).tap do |context|
authorize_if_present context.passport_confirmation
end
end
redirect_to passport_passport_confirmations_path @passport
end
private
def set_passport
@passport = Passport.find params[:passport_id]
end
def authorize_if_present(record)
if record
authorize record
else
skip_authorization
end
end
end